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

17 lines
318 B
Go

// +build frameworkbootstrap4lux
package frameworks
import (
"github.com/gobuffalo/packr"
)
func init() {
assets := packr.NewBox("./bootstrap4lux/assets")
FrameworkToUse = &Framework{
Name: "Bootstrap 4 (Lux)",
JS: assets.String("bootstrap.bundle.min.js"),
CSS: assets.String("bootstrap.min.css"),
}
}