mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
13 lines
302 B
Go
13 lines
302 B
Go
//go:build !linux && !windows && !freebsd
|
|
|
|
package osl
|
|
|
|
type Namespace struct{}
|
|
|
|
func (n *Namespace) Destroy() error { return nil }
|
|
|
|
// GetSandboxForExternalKey returns sandbox object for the supplied path
|
|
func GetSandboxForExternalKey(path string, key string) (*Namespace, error) {
|
|
return nil, nil
|
|
}
|