mirror of
https://codeberg.org/video-prize-ranch/rimgo.git
synced 2026-01-28 17:41:13 +00:00
11 lines
108 B
Go
11 lines
108 B
Go
package static
|
|
|
|
import "embed"
|
|
|
|
//go:embed *
|
|
var files embed.FS
|
|
|
|
func GetFiles() embed.FS {
|
|
return files
|
|
}
|