* Upgrade to Go 1.16. Remove Go-Bind-assets in favor of embed. Checking Portal-UI Build folder. * lint * Remove assets references * Fixes for sub fs * Fix lint
11 lines
117 B
Go
11 lines
117 B
Go
package portalui
|
|
|
|
import "embed"
|
|
|
|
//go:embed build/*
|
|
var fs embed.FS
|
|
|
|
func GetStaticAssets() embed.FS {
|
|
return fs
|
|
}
|