| 12345678910111213141516171819 | package coreimport "time"// Config structtype 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{}}
 |