open-vault/helper/hostutil/hostinfo_openbsd.go

22 lines
449 B
Go
Raw Normal View History

// +build openbsd
package hostutil
import (
"fmt"
"time"
)
type HostInfo struct {
Timestamp time.Time `json:"timestamp"`
CPU []interface{} `json:"cpu"`
CPUTimes []interface{} `json:"cpu_times"`
Disk []interface{} `json:"disk"`
Host interface{} `json:"host"`
Memory interface{} `json:"memory"`
}
func CollectHostInfo() (*HostInfo, error) {
return nil, fmt.Errorf("host info not supported on this platform")
}