5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 23:39:21 +08:00
wails/v2/internal/system/operatingsystem/os.go
2025-01-21 21:15:24 +02:00

15 lines
276 B
Go

package operatingsystem
// OS contains information about the operating system
type OS struct {
ID string
Name string
Version string
Branding string
}
// Info retrieves information about the current platform
func Info() (*OS, error) {
return platformInfo()
}