Files
yuki/root.go
2026-01-03 11:31:22 -03:00

19 lines
251 B
Go

package main
import (
"log"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "yuki",
Short: "An extraterrestial (but limited) activitypub client",
}
func Execute() {
err := rootCmd.Execute()
if err != nil {
log.Fatal(err)
}
}