mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:50:15 +08:00
14 lines
300 B
Go
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
|