github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/drivers/shared/executor/resource_container_default.go (about) 1 // +build darwin dragonfly freebsd netbsd openbsd solaris windows 2 3 package executor 4 5 // resourceContainerContext is a platform-specific struct for managing a 6 // resource container. 7 type resourceContainerContext struct { 8 } 9 10 func (rc *resourceContainerContext) executorCleanup() error { 11 return nil 12 }