mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
11 lines
126 B
Go
11 lines
126 B
Go
package main
|
|
|
|
import "go.uber.org/fx"
|
|
|
|
func main() {
|
|
app := fx.New(
|
|
// fx.Invoke(StartDiscordAuthService),
|
|
)
|
|
|
|
app.Run()
|
|
}
|