bottin/v4/cmd/web.go
Victor Lacasse-Beaudoin 3ccebd8cfb Refactor app sous v4/
2023-05-25 02:21:09 -04:00

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)
}