Files
object-browser/portal-ui/assets.go
Daniel Valdivia a2a09b8db1 Upgrade to Go 1.16. Remove Go-Bind-assets in favor of embed. (#630)
* 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
2021-03-05 10:39:17 -08:00

11 lines
117 B
Go

package portalui
import "embed"
//go:embed build/*
var fs embed.FS
func GetStaticAssets() embed.FS {
return fs
}