package main import ( "context" "os" "git.iwakura.rip/grng/mix/cmd" "github.com/urfave/cli/v3" ) func main() { (&cli.Command{ Commands: []*cli.Command{ cmd.SyncCommand, }, }).Run(context.Background(), os.Args) }