Files
cliprepo/cmd/root.go
T
2026-05-16 01:39:45 +08:00

18 lines
229 B
Go

package cmd
import (
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "cliprepo",
Short: "LLM context builder from repo",
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
}