Initial commit
This commit is contained in:
19
cmd/payouts/main.go
Normal file
19
cmd/payouts/main.go
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user