bottin/v4/cmd/web.go

21 lines
302 B
Go
Raw Normal View History

2023-05-25 02:21:09 -04:00
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)
}