diff options
Diffstat (limited to 'executor/resource_container_default.go')
-rw-r--r-- | executor/resource_container_default.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/executor/resource_container_default.go b/executor/resource_container_default.go new file mode 100644 index 0000000..0274e1b --- /dev/null +++ b/executor/resource_container_default.go @@ -0,0 +1,12 @@ +//go:build !linux + +package executor + +// resourceContainerContext is a platform-specific struct for managing a +// resource container. +type resourceContainerContext struct { +} + +func (rc *resourceContainerContext) executorCleanup() error { + return nil +} |