Files
bridge/internal/service/config.go
2023-07-01 00:04:52 +00:00

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