defaultFileSystem implements FileSystem by delegating to existing platform-specific implementations.
| 60 | // defaultFileSystem implements FileSystem by delegating to existing |
| 61 | // platform-specific implementations. |
| 62 | type defaultFileSystem struct { |
| 63 | afs afero.Fs |
| 64 | ops FilePermsOps |
| 65 | checker *PermsChecker |
| 66 | acl ACLVerifier |
| 67 | } |
| 68 | |
| 69 | // FileSystemOption configures a FileSystem created by NewFileSystem. |
| 70 | type FileSystemOption func(*defaultFileSystem) |
nothing calls this directly
no outgoing calls
no test coverage detected