mirror of
https://github.com/minio/minio.git
synced 2025-01-16 01:03:15 -05:00
f7a87b30bf
This reverts commit 736d8cbac483d8bf56c3422ca9a9c4c3e043c6cf. Bring contrib files for older contributions
12 lines
152 B
Go
12 lines
152 B
Go
package browser
|
|
|
|
import "embed"
|
|
|
|
//go:embed release/*
|
|
var fs embed.FS
|
|
|
|
// GetStaticAssets returns assets
|
|
func GetStaticAssets() embed.FS {
|
|
return fs
|
|
}
|