LocalFilesystemLoader represents a local filesystem loader with basic BaseDirectory capabilities. The access to the local filesystem is unrestricted.
| 35 | // LocalFilesystemLoader represents a local filesystem loader with basic |
| 36 | // BaseDirectory capabilities. The access to the local filesystem is unrestricted. |
| 37 | type LocalFilesystemLoader struct { |
| 38 | baseDir string |
| 39 | } |
| 40 | |
| 41 | // MustNewLocalFileSystemLoader creates a new LocalFilesystemLoader instance |
| 42 | // and panics if there's any error during instantiation. The parameters |
nothing calls this directly
no outgoing calls
no test coverage detected