mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 07:21:32 +08:00
17 lines
318 B
Go
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"),
|
|
}
|
|
}
|