mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-22 18:27:42 +00:00
12 lines
132 B
Go
12 lines
132 B
Go
//go:build !dev
|
|
|
|
package frontend
|
|
|
|
import "embed"
|
|
|
|
//go:embed dist/*
|
|
var assets embed.FS
|
|
|
|
func Assets() embed.FS {
|
|
return assets
|
|
}
|