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