feat: dbcontext

This commit is contained in:
2025-06-20 20:28:50 +03:00
parent 1dc24df037
commit 8577314875
4 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package database
import (
"go.uber.org/fx"
)
var Module = fx.Module("database",
fx.Provide(
NewDbContext,
),
)