chore: init project

This commit is contained in:
2026-01-24 07:18:24 +01:00
commit 0a07b85e4e
3 changed files with 40 additions and 0 deletions

33
main.go Normal file
View File

@@ -0,0 +1,33 @@
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)
}
}