mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:29:53 +08:00
12 lines
459 B
Go
12 lines
459 B
Go
package flags
|
|
|
|
type Init struct {
|
|
Common
|
|
|
|
TemplateName string `name:"t" description:"Name of built-in template to use, path to template or template url" default:"vanilla"`
|
|
ProjectName string `name:"n" description:"Name of project" default:""`
|
|
ProjectDir string `name:"d" description:"Project directory" default:"."`
|
|
Quiet bool `name:"q" description:"Suppress output to console"`
|
|
List bool `name:"l" description:"List templates"`
|
|
}
|