Initial album support

This commit is contained in:
video-prize-ranch
2022-01-17 15:23:04 -05:00
parent 0c5f9bc6b5
commit 579cbc84c6
26 changed files with 1104 additions and 9098 deletions

10
static/embed.go Normal file
View File

@@ -0,0 +1,10 @@
package static
import "embed"
//go:embed *
var files embed.FS
func GetFiles() embed.FS {
return files
}