mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-20 19:40:39 -06:00
14 lines
249 B
Go
14 lines
249 B
Go
// Package config should be moved to internal
|
|
package config
|
|
|
|
// Config captures ocis-accounts configuration parameters
|
|
type Config struct {
|
|
MountPath string
|
|
Manager string
|
|
}
|
|
|
|
// New returns a new config
|
|
func New() *Config {
|
|
return &Config{}
|
|
}
|