馃尫 the cutsie hackatime helper
1package main
2
3import (
4 "context"
5 "os"
6
7 "github.com/charmbracelet/fang"
8 "github.com/spf13/cobra"
9)
10
11func main() {
12 cmd := &cobra.Command{
13 Use: "akami",
14 Short: "馃尫 the cutsie hackatime helper",
15 }
16 if err := fang.Execute(context.TODO(), cmd); err != nil {
17 os.Exit(1)
18 }
19}