machine_solaris.go 252 B

12345678910111213141516
  1. package supervisor
  2. import (
  3. "errors"
  4. )
  5. type Machine struct {
  6. Cpus int
  7. Memory int64
  8. }
  9. func CollectMachineInformation() (Machine, error) {
  10. m := Machine{}
  11. return m, errors.New("supervisor CollectMachineInformation not implemented on Solaris")
  12. }