mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-21 19:39:29 +08:00
20 lines
367 B
Go
20 lines
367 B
Go
//go:build dev
|
|
// +build dev
|
|
|
|
package main
|
|
|
|
func init() {
|
|
|
|
commandDescription := `This command provides access to developer tooling.`
|
|
devCommand := app.Command("dev", "A selection of developer tools").
|
|
LongDescription(commandDescription)
|
|
|
|
// Add subcommands
|
|
newTemplate(devCommand)
|
|
|
|
devCommand.Action(func() error {
|
|
devCommand.PrintHelp()
|
|
return nil
|
|
})
|
|
}
|