25 lines
380 B
Go
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)
|
|
}
|
|
}
|