mix/main.go
2025-06-18 19:19:39 +01:00

17 lines
228 B
Go

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)
}