mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:42:23 +08:00
14 lines
256 B
Go
14 lines
256 B
Go
package operatingsystem
|
|
|
|
// OS contains information about the operating system
|
|
type OS struct {
|
|
ID string
|
|
Name string
|
|
Version string
|
|
}
|
|
|
|
// Info retrieves information about the current platform
|
|
func Info() (*OS, error) {
|
|
return platformInfo()
|
|
}
|