bokoworker.go 592 B

12345678910111213141516171819
  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. DiskUUID string // Disk UUID, when provided, will be used instead of disk path
  12. DiskPath string // Disk device path (e.g. /dev/sda1), Disk UUID will have higher priority
  13. Subpath string // Subpath to serve, default is root
  14. ReadOnly bool //Label this worker as read only
  15. }