mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
13 lines
219 B
Go
13 lines
219 B
Go
|
package system
|
||
|
|
||
|
// SysInfo used to moc out the sysinfo getter
|
||
|
type SysInfo struct {
|
||
|
ChassisSerial string
|
||
|
ProductSerial string
|
||
|
BoardSerial string
|
||
|
|
||
|
ProductName string
|
||
|
BoardName string
|
||
|
ProductVendor string
|
||
|
}
|