service.go 198 B

1234567891011
  1. package gdrivefs
  2. import "github.com/jacobsa/fuse/fuseutil"
  3. // Driver for gdrive
  4. type GDriveDriver interface {
  5. Fuse() fuseutil.FileSystem // Fetch the file system
  6. }
  7. type gdriveService struct {
  8. }