mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-12 06:59:30 +08:00
19 lines
352 B
Go
19 lines
352 B
Go
// +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
|
|
})
|
|
}
|