// +build devel /* ------------------------------------------------------------------------------------------------------------------------ ####### gui ####### Copyright (c) 2021 mls-361 ##################################################### MIT License ####### ------------------------------------------------------------------------------------------------------------------------ */ package gui import ( "net/http" "os" ) func getStaticFS() (http.FileSystem, error) { return http.FS(os.DirFS("static")), nil } /* ######################################################################################################## @(°_°)@ ####### */