//go:build kanholec_gui package sub import ( "github.com/spf13/cobra" "kanhole/client/gui" ) func init() { guiCmd := &cobra.Command{ Use: "gui", Short: "Start the kanholec graphical user interface", RunE: func(cmd *cobra.Command, args []string) error { gui.Run() return nil }, } rootCmd.AddCommand(guiCmd) }