config barebones

This commit is contained in:
A.Unger
2020-02-03 19:10:17 +01:00
parent c2cd4e5557
commit 4b595b4b07

12
pkg/config/config.go Normal file
View File

@@ -0,0 +1,12 @@
// Package config should be moved to internal
package config
// Config captures ocis-accounts configuration parameters
type Config struct {
MountPath string
}
// New returns a new config
func New() *Config {
return &Config{}
}