mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-18 08:29:55 +01:00
16 lines
318 B
Go
16 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"),
|
|
}
|
|
}
|