10 lines
226 B
Go
10 lines
226 B
Go
package service
|
|
|
|
// Config defines the service configuration.
|
|
type Config struct {
|
|
RootTenant string `mapstructure:"root_tenant"`
|
|
}
|
|
|
|
// ConfigRoles is a list of roles to a list of actions
|
|
type ConfigRoles map[string][]string
|