Initial commit

This commit is contained in:
2026-03-05 11:21:18 +03:00
commit 056e2ad529
18 changed files with 729 additions and 0 deletions

19
cmd/payouts/main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"go.uber.org/fx"
"payouts/internal/api"
"payouts/internal/config"
"payouts/internal/log"
)
func main() {
app := fx.New(
api.Module,
config.Module,
log.Module,
)
app.Run()
}