mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
f7a87b30bf
This reverts commit 736d8cbac4
.
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
|
|
}
|