package cli import ( "context" "os" "github.com/charmbracelet/log" "github.com/urfave/cli/v3" ) var rootCommand = cli.Command{ Name: "dmc", // TODO? short name? Authors: []any{ "banana", "rad", }, Copyright: "(c) 2025 potassium.sh", Description: "Store your Minecraft configs with your other dotfiles, and load them automatically.", Commands: []*cli.Command{ syncCommand, }, } func Run() { if err := rootCommand.Run(context.Background(), os.Args); err != nil { log.Fatal(err) } }