mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
11 lines
115 B
Go
11 lines
115 B
Go
package frontend
|
|
|
|
import "embed"
|
|
|
|
//go:embed dist/*
|
|
var assets embed.FS
|
|
|
|
func Assets() embed.FS {
|
|
return assets
|
|
}
|