config.go 252 B

1234567891011121314
  1. package core
  2. import "time"
  3. // Config struct
  4. type Config struct {
  5. Daemonize bool
  6. CloudFSDriver string
  7. VerboseLog bool
  8. RefreshTime time.Duration
  9. HomeDir string
  10. UID uint32 // Mount UID
  11. GID uint32 // Mount GID
  12. }