22 lines
263 B
Go
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
|
|
}
|