20 lines
285 B
Go
20 lines
285 B
Go
|
package web
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"io/fs"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
//go:embed assets
|
||
|
var assetsDir embed.FS
|
||
|
|
||
|
func Assets() http.FileSystem {
|
||
|
f, _ := fs.Sub(assetsDir, "assets")
|
||
|
return http.FS(f)
|
||
|
}
|
||
|
|
||
|
func AssetsGetFile(path string) ([]byte, error) {
|
||
|
return assetsDir.ReadFile("assets/" + path)
|
||
|
}
|