config.go 191 B

123456789101112
  1. package core
  2. // Config struct
  3. type Config struct {
  4. Daemonize bool
  5. CloudFSDriver string
  6. VerboseLog bool
  7. HomeDir string
  8. UID uint32 // Mount UID
  9. GID uint32 // Mount GID
  10. }