github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/libnetwork/osl/sandbox_unsupported.go (about) 1 // +build !linux,!windows,!freebsd,!solaris 2 3 package osl 4 5 import "errors" 6 7 var ( 8 // ErrNotImplemented is for platforms which don't implement sandbox 9 ErrNotImplemented = errors.New("not implemented") 10 ) 11 12 // NewSandbox provides a new sandbox instance created in an os specific way 13 // provided a key which uniquely identifies the sandbox 14 func NewSandbox(key string, osCreate, isRestore bool) (Sandbox, error) { 15 return nil, ErrNotImplemented 16 } 17 18 // GenerateKey generates a sandbox key based on the passed 19 // container id. 20 func GenerateKey(containerID string) string { 21 return "" 22 }