Files
zurg/internal/zfs/fs.go
2023-11-05 00:02:22 +01:00

22 lines
263 B
Go

package zfs
import (
"os"
"sync"
"bazil.org/fuse/fs"
)
type FS struct {
uid uint32
gid uint32
umask os.FileMode
directIO bool
lock sync.RWMutex
}
// Root returns the root path
func (f *FS) Root() (fs.Node, error) {
return nil, nil
}