Files
moby/daemon/libnetwork/osl/namespace_unsupported.go
Derek McGowan 7a720df61f Move libnetwork to daemon/libnetwork
Signed-off-by: Derek McGowan <derek@mcg.dev>
2025-07-14 09:25:23 -07:00

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
}