Files
cliprepo/cmd/root.go
T
2026-05-15 23:36:12 +08:00

18 lines
247 B
Go

package cmd
import (
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "cliprepo",
Short: "Extract repo structure and bundle code for LLMs",
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
}