mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:31:20 +08:00
10 lines
213 B
Go
10 lines
213 B
Go
//go:build dev || bindings || (!dev && !production && !bindings)
|
|
// +build dev bindings !dev,!production,!bindings
|
|
|
|
package runtime
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed runtime_dev_desktop.js
|
|
var RuntimeDesktopJS []byte
|