21 lines
302 B
Go
21 lines
302 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// webCmd represents the web command
|
||
|
var webCmd = &cobra.Command{
|
||
|
Use: "web",
|
||
|
Short: "Démarrer le client web",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
fmt.Println("web called")
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(webCmd)
|
||
|
}
|