mirror of
https://github.com/minio/minio.git
synced 2024-12-25 14:45:54 -05:00
12 lines
155 B
Go
12 lines
155 B
Go
package browser
|
|
|
|
import "embed"
|
|
|
|
//go:embed production/*
|
|
var fs embed.FS
|
|
|
|
// GetStaticAssets returns assets
|
|
func GetStaticAssets() embed.FS {
|
|
return fs
|
|
}
|