mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 17:19:51 +08:00
14 lines
348 B
Go
14 lines
348 B
Go
package application
|
|
|
|
// EnvironmentInfo represents information about the current environment.
|
|
//
|
|
// Fields:
|
|
// - OS: the operating system that the program is running on.
|
|
// - Arch: the architecture of the operating system.
|
|
// - Debug: indicates whether debug mode is enabled.
|
|
type EnvironmentInfo struct {
|
|
OS string
|
|
Arch string
|
|
Debug bool
|
|
}
|