15 lines
288 B
Go
15 lines
288 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package sysinfo
|
|
|
|
// Kernel information.
|
|
type Kernel struct {
|
|
Release string `json:"release,omitempty"`
|
|
Version string `json:"version,omitempty"`
|
|
Architecture string `json:"architecture,omitempty"`
|
|
}
|
|
|
|
func (si *SysInfo) getKernelInfo() {
|
|
}
|