Only run default command if no args

Add custom template (Frameworks)
This commit is contained in:
Lea Anthony
2018-12-26 19:09:18 +11:00
parent 859b2dd638
commit 53cf2bb953
20 changed files with 248 additions and 2 deletions

13
cmd/frameworks/main.go Normal file
View File

@@ -0,0 +1,13 @@
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