mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 07:29:56 +08:00
9 lines
213 B
Go
9 lines
213 B
Go
//go:build production
|
|
|
|
package runtime
|
|
|
|
import "fmt"
|
|
import goruntime "runtime"
|
|
|
|
var environment = fmt.Sprintf(`window._wails.environment={"OS":"%s","Arch":"%s","Debug":false};`, goruntime.GOOS, goruntime.GOARCH)
|