Move into api routers instead of main

This commit is contained in:
2022-02-16 16:27:48 +01:00
parent f35f277b16
commit c3946df1ff
16 changed files with 561 additions and 358 deletions

View File

@@ -0,0 +1,19 @@
package app
import (
"serverctl/pkg/api"
"serverctl/pkg/infrastructure"
"serverctl/pkg/infrastructure/dependencies"
)
func Run() {
d := dependencies.New()
d.Logger.Info("Starting serverctl")
infrastructure.AddSeedData(d.Database, d.Logger)
api.
NewServerctlApi(d).
SetupApi().
RunApi()
}