12345678910111213141516171819 |
- package core
- import "time"
- // Config struct
- type Config struct {
- Daemonize bool
- Type string
- VerboseLog bool
- RefreshTime time.Duration
- HomeDir string
- UID uint32 // Mount UID
- GID uint32 // Mount GID
- Target string // should be a folder
- Source string
- // Driver specific params:
- Param map[string]interface{}
- }
|