bokoworker.go 662 B

1234567891011121314151617181920
  1. package bokoworker
  2. /*
  3. Boko Worker
  4. A boko worker is an instance of WebDAV file server that serves a specific
  5. disk partition or subpath in which the user can interact with the disk
  6. via WebDAV interface
  7. */
  8. type Worker struct {
  9. /* Worker Properties */
  10. UUID string //UUID of this worker
  11. RootPath string //The root path request by this worker, e.g. /disk1
  12. DiskUUID string // Disk UUID, when provided, will be used instead of disk path
  13. DiskPath string // Disk device path (e.g. /dev/sda1), Disk UUID will have higher priority
  14. Subpath string // Subpath to serve, default is root
  15. ReadOnly bool //Label this worker as read only
  16. }