()
| 60 | ) |
| 61 | |
| 62 | func init() { |
| 63 | RegisterFilesystemType(FilesystemTypeBasic, func(root string, opts ...Option) (Filesystem, error) { |
| 64 | return newBasicFilesystem(root, opts...), nil |
| 65 | }) |
| 66 | } |
| 67 | |
| 68 | func newBasicFilesystem(root string, opts ...Option) *BasicFilesystem { |
| 69 | if root == "" { |
nothing calls this directly
no test coverage detected