mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
16 lines
321 B
Go
16 lines
321 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//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
|
|
}
|