mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-01 22:29:54 +08:00
17 lines
323 B
Go
17 lines
323 B
Go
// +build frameworkbootstrap4
|
|
|
|
package frameworks
|
|
|
|
import (
|
|
"github.com/gobuffalo/packr"
|
|
)
|
|
|
|
func init() {
|
|
assets := packr.NewBox("./bootstrap4default/assets")
|
|
FrameworkToUse = &Framework{
|
|
Name: "Bootstrap 4",
|
|
JS: BoxString(&assets, "bootstrap.bundle.min.js"),
|
|
CSS: BoxString(&assets, "bootstrap.min.css"),
|
|
}
|
|
}
|