open-nomad/client/driver/executor/resource_container_default.go
2016-07-09 23:01:14 -07:00

19 lines
347 B
Go

// +build darwin dragonfly freebsd netbsd openbsd solaris windows
package executor
import (
dstructs "github.com/hashicorp/nomad/client/driver/structs"
)
type resourceContainer struct {
}
func (rc *resourceContainer) cleanup() error {
return nil
}
func (rc *resourceContainer) getIsolationConfig() *dstructs.IsolationConfig {
return nil
}