mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:50:15 +08:00
18 lines
357 B
Go
18 lines
357 B
Go
// +build frameworkbootstrap4
|
|
|
|
package bootstrap4
|
|
|
|
import (
|
|
"github.com/gobuffalo/packr"
|
|
"github.com/wailsapp/wails/frameworks"
|
|
)
|
|
|
|
func init() {
|
|
assets := packr.NewBox("./assets")
|
|
frameworks.FrameworkToUse = &frameworks.Framework{
|
|
Name: "Bootstrap 4",
|
|
JS: assets.String("bootstrap.bundle.min.js"),
|
|
CSS: assets.String("bootstrap.min.css"),
|
|
}
|
|
}
|