5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 06:39:30 +08:00
wails/cmd/frameworks/main.go
Lea Anthony 53cf2bb953 Only run default command if no args
Add custom template (Frameworks)
2018-12-26 19:09:18 +11:00

14 lines
300 B
Go

package frameworks
// Framework has details about a specific framework
type Framework struct {
Name string
JS string
CSS string
Options string
}
// FrameworkToUse is the framework we will use when building
// Set by `wails init`, used by `wails build`
var FrameworkToUse *Framework