driverfs.go 194 B

12345678910111213
  1. package core
  2. import "github.com/jacobsa/fuse/fuseutil"
  3. // Base Driver
  4. type DriverFS interface {
  5. fuseutil.FileSystem
  6. //Init()
  7. Start()
  8. //Refresh()
  9. }
  10. type DriverFactory func(*Core) DriverFS