mirror of
https://github.com/rancher/os.git
synced 2025-07-05 11:06:13 +00:00
16 lines
252 B
Go
16 lines
252 B
Go
package supervisor
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
type Machine struct {
|
|
Cpus int
|
|
Memory int64
|
|
}
|
|
|
|
func CollectMachineInformation() (Machine, error) {
|
|
m := Machine{}
|
|
return m, errors.New("supervisor CollectMachineInformation not implemented on Solaris")
|
|
}
|