github.com/hernad/nomad@v1.6.112/drivers/shared/executor/resource_container_default.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  //go:build !linux
     5  
     6  package executor
     7  
     8  // resourceContainerContext is a platform-specific struct for managing a
     9  // resource container.
    10  type resourceContainerContext struct {
    11  }
    12  
    13  func (rc *resourceContainerContext) executorCleanup() error {
    14  	return nil
    15  }