8 lines
302 B
TypeScript
8 lines
302 B
TypeScript
import ProfileController from './ProfileController'
|
|
import SecurityController from './SecurityController'
|
|
const Settings = {
|
|
ProfileController: Object.assign(ProfileController, ProfileController),
|
|
SecurityController: Object.assign(SecurityController, SecurityController),
|
|
}
|
|
|
|
export default Settings |