namespace_unsupported.go 412 B

1234567891011121314151617
  1. //go:build !linux && !windows && !freebsd
  2. package osl
  3. // GC triggers garbage collection of namespace path right away
  4. // and waits for it.
  5. func GC() {
  6. }
  7. // GetSandboxForExternalKey returns sandbox object for the supplied path
  8. func GetSandboxForExternalKey(path string, key string) (Sandbox, error) {
  9. return nil, nil
  10. }
  11. // SetBasePath sets the base url prefix for the ns path
  12. func SetBasePath(path string) {
  13. }