Files

19 lines
549 B
Go
Raw Permalink Normal View History

package application
2024-03-19 20:36:52 +11:00
import "github.com/wailsapp/wails/v3/internal/operatingsystem"
// 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.
2024-03-19 20:36:52 +11:00
// - OSInfo: information about the operating system.
type EnvironmentInfo struct {
2024-03-19 20:36:52 +11:00
OS string
Arch string
Debug bool
OSInfo *operatingsystem.OS
PlatformInfo map[string]any
}