refactor: made logger a dependency

This commit is contained in:
2025-06-20 16:52:52 +03:00
parent 7ad1336c88
commit 8007b11731
3 changed files with 40 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
package controllers
import (
"go.uber.org/fx"
)
var Module = fx.Module("controllers",
fx.Provide(
NewServiceController,
NewAuthController,
),
)