1
0
mirror of https://github.com/rancher/os.git synced 2025-07-06 11:36:15 +00:00
os/vendor/github.com/docker/containerd/supervisor/machine_solaris.go
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -07:00

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")
}