17 lines
228 B
Go
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)
|
|
}
|