14 lines
208 B
Go
14 lines
208 B
Go
package controller
|
|
|
|
import "SciencesServer/config"
|
|
|
|
type Config struct{}
|
|
|
|
func (c *Config) Identity() map[uint]string {
|
|
return config.TenantUserIdentityData
|
|
}
|
|
|
|
func NewConfig() *Config {
|
|
return &Config{}
|
|
}
|