mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-09 23:09:38 +01:00
15 lines
303 B
Go
15 lines
303 B
Go
|
package system
|
||
|
|
||
|
//Info is an object that contains machine information
|
||
|
// Most of the code is taken from https://github.com/matishsiao/goInfo
|
||
|
type Info struct {
|
||
|
GoOS string
|
||
|
Kernel string
|
||
|
Core string
|
||
|
Platform string
|
||
|
OS string
|
||
|
OSVersion string
|
||
|
Hostname string
|
||
|
CPUs int
|
||
|
}
|