mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 05:11:29 +08:00
15 lines
276 B
Go
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()
|
|
}
|