5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-01 22:29:54 +08:00
wails/cmd/frameworks/bootstrap4lux.go
Lea Anthony a28315f38b Fix Packr deprecation errors
Improved comments
2019-01-11 06:15:49 +11:00

17 lines
328 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: BoxString(&assets, "bootstrap.bundle.min.js"),
CSS: BoxString(&assets, "bootstrap.min.css"),
}
}