This commit is contained in:
2023-12-01 13:44:58 +01:00
parent b958ff7ca2
commit 6e98701299
239 changed files with 827 additions and 102 deletions

View File

@@ -7,6 +7,7 @@ import (
bunny "locbunny"
"locbunny/api"
"locbunny/logic"
"locbunny/webassets"
)
func main() {
@@ -16,7 +17,9 @@ func main() {
log.Info().Msg(fmt.Sprintf("Starting with config-namespace <%s>", conf.Namespace))
app := logic.NewApp()
assets := webassets.NewAssets()
app := logic.NewApp(assets)
ginengine := ginext.NewEngine(conf.Cors, conf.GinDebug, true, conf.RequestTimeout)