diff --git a/pkg/config/config.go b/pkg/config/config.go new file mode 100644 index 0000000000..bf72297202 --- /dev/null +++ b/pkg/config/config.go @@ -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{} +}