Files
wt/main.go
2026-01-24 07:18:34 +01:00

34 lines
370 B
Go

package main
import (
"context"
"log"
"os"
"github.com/urfave/cli/v3"
)
func main (){
cmd := cli.Command{
Name: "wt",
Commands: []*cli.Command{
{
Name: "init",
},
{
Name: "clone",
},
{
Name: "list",
},
{
Name: "switch",
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}