Files
opencloud/pkg/config/config.go
2020-02-04 11:55:04 +01:00

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{}
}