A very naive, simple and not so robust HTTP API responder implementation.

This commit is contained in:
2020-11-29 06:09:35 +05:00
parent f5d898b025
commit afad4f5d7f
5 changed files with 67 additions and 5 deletions

View File

@@ -44,6 +44,8 @@ func main() {
app := application.NewApplication(mainCtx, appName, appConfig)
app.Start()
httpSrv.RegisterHandlerForApplication(appName, app.GetHandler())
apps = append(apps, app)
}