mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 01:45:44 +03:00
23 lines
436 B
Go
23 lines
436 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 clientCleanup(ic *dstructs.IsolationConfig, pid int) error {
|
|
return nil
|
|
}
|
|
|
|
func (rc *resourceContainer) executorCleanup() error {
|
|
return nil
|
|
}
|
|
|
|
func (rc *resourceContainer) getIsolationConfig() *dstructs.IsolationConfig {
|
|
return nil
|
|
}
|