Files

16 lines
222 B
Go
Raw Normal View History

2021-09-29 16:25:56 +08:00
package controller
2021-09-30 16:20:00 +08:00
import (
"SciencesServer/app/basic/config"
)
2021-09-29 16:25:56 +08:00
type Config struct{}
2021-09-30 16:20:00 +08:00
func (c *Config) Identity() map[int]string {
2021-09-29 16:25:56 +08:00
return config.TenantUserIdentityData
}
func NewConfig() *Config {
return &Config{}
}