Files
2026-08-07 00:03:15 +02:00

25 lines
380 B
Go

package cmd
import (
"os"
"github.com/spf13/cobra"
)
// var (
// cfgFile string
// )
// rootCmd is the root command for the agence CLI.
var rootCmd = &cobra.Command{
Use: "lassistanoque",
Short: "lassistanoque: autonome agent",
}
// Execute is the main entry point for the CLI application.
func Execute() {
if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
}