get database migrations up and running

This commit is contained in:
2021-07-02 18:13:58 -04:00
parent da239cf9ad
commit 04506ed01f
6 changed files with 227 additions and 43 deletions

View File

@@ -1,6 +1,13 @@
package frontend
import "embed"
import (
"embed"
"io/fs"
)
//go:embed files
var Static embed.FS
var static embed.FS
func Root() (fs.FS, error) {
return fs.Sub(static, "files")
}