fsextend.go 277 B

12345678910111213
  1. package fsextend
  2. /*
  3. fsextend.go
  4. This module extend the file system handler function to virtualized / emulated
  5. interfaces
  6. */
  7. type VirtualizedFileSystemPathResolver interface {
  8. VirtualPathToRealPath(string) (string, error)
  9. RealPathToVirtualPath(string) (string, error)
  10. }