add initial application structure with configuration, logging, and health check endpoints
This commit is contained in:
13
internal/controller/module.go
Normal file
13
internal/controller/module.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// Code generated by cmd/gen/controllers; DO NOT EDIT.
|
||||
package controller
|
||||
|
||||
import "go.uber.org/fx"
|
||||
|
||||
var Module = fx.Options(
|
||||
fx.Provide(
|
||||
NewHealthController,
|
||||
),
|
||||
fx.Invoke(
|
||||
RegisterRoutes,
|
||||
),
|
||||
)
|
||||
Reference in New Issue
Block a user