todo
cicd / cicd (push) Failing after 39s Details

main
bel 2023-10-28 10:54:23 -06:00
parent 93e5a77e04
commit c75bd74823
1 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,11 @@ import (
)
//go:embed public/*
var staticFileDir embed.FS
var _staticFileDir embed.FS
var staticFileDir = func() embed.FS {
panic("if dev mode then return live")
return _staticFileDir
}
func Main() {
foo := flag.String("foo", "bal", "bal or reg")