This commit is contained in:
2025-09-28 20:19:45 +03:00
parent 6638ef1b5f
commit 3fd63d5f32
21 changed files with 356 additions and 355 deletions

View File

@@ -0,0 +1,12 @@
package marketplace
import "go.uber.org/fx"
var Module = fx.Options(
fx.Provide(
NewDBRepository,
),
fx.Invoke(
Register,
),
)