16 lines
222 B
Go
16 lines
222 B
Go
package controller
|
|
|
|
import (
|
|
"SciencesServer/app/basic/config"
|
|
)
|
|
|
|
type Config struct{}
|
|
|
|
func (c *Config) Identity() map[int]string {
|
|
return config.TenantUserIdentityData
|
|
}
|
|
|
|
func NewConfig() *Config {
|
|
return &Config{}
|
|
}
|