fix: add invoke to ensure http server triggers

This commit is contained in:
Derrick Hammer 2024-01-28 05:08:19 -05:00
parent 47422524b8
commit 46da3bdcee
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -59,5 +59,6 @@ func main() {
fx.Invoke(protocols.SetupLifecycles),
fx.Invoke(api.SetupLifecycles),
fx.Provide(NewServer),
fx.Invoke(func(*http.Server) {}),
).Run()
}