This commit is contained in:
a 2024-07-21 13:29:04 -05:00
parent e94663b866
commit 6e3abf388e
No known key found for this signature in database
GPG key ID: 374BC539FE795AF0

View file

@ -18,6 +18,10 @@ type wrapperFs struct {
fs.FS
}
func (w *wrapperFs) Unwrap() fs.FS {
return w.FS
}
// FilesystemMap stores a map of filesystems
// the empty key will be overwritten to be the default key
// it includes a default filesystem, based off the os fs