mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 02:15:43 +03:00
19 lines
355 B
Go
19 lines
355 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) executorCleanup() error {
|
|
return nil
|
|
}
|
|
|
|
func (rc *resourceContainer) getIsolationConfig() *dstructs.IsolationConfig {
|
|
return nil
|
|
}
|