gspot/main.go
2024-02-18 01:30:19 -08:00

25 lines
370 B
Go

package main
import (
"go.uber.org/fx"
"git.asdf.cafe/abs3nt/gospt-ng/src/app"
"git.asdf.cafe/abs3nt/gospt-ng/src/components/cli"
"git.asdf.cafe/abs3nt/gospt-ng/src/components/commands"
)
func main() {
var s fx.Shutdowner
app := fx.New(
fx.Populate(&s),
app.Config,
fx.Provide(
commands.NewCommander,
),
fx.Invoke(
cli.Run,
),
)
app.Run()
}