Darius klein fcd0f88f52
Some checks failed
build and deploy kleinTodo / build (push) Failing after 28s
refactor + added client
2025-08-23 13:28:48 +02:00

34 lines
556 B
Go

package main
import (
"context"
"log"
"net/mail"
"os"
"github.com/urfave/cli/v3"
)
func main() {
app := &cli.Command{
Name: "Todo",
Usage: "kleinTodo client",
UsageText: "Todo [category] [command] [arguments...]",
Version: "v0.1.0",
HideVersion: true,
Authors: []any{
mail.Address{
Name: "Darius",
Address: "darius.klein@dariusklein.nl",
},
},
DefaultCommand: "help",
Commands: []*cli.Command{},
}
if err := app.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}