import Api from './Api'
import Admin from './Admin'
import TestController from './TestController'
import Settings from './Settings'
import DocsController from './DocsController'
import DevloperController from './DevloperController'
import DashboardController from './DashboardController'
import SearchController from './SearchController'
import UserController from './UserController'
import ContactController from './ContactController'
import TagController from './TagController'
import RoleController from './RoleController'
import TestEmailController from './TestEmailController'
import LanguageController from './LanguageController'
import Import from './Import'
import ActivityLogController from './ActivityLogController'
import NotificationController from './NotificationController'
import BackupController from './BackupController'
import Auth from './Auth'

const Controllers = {
    Api: Object.assign(Api, Api),
    Admin: Object.assign(Admin, Admin),
    TestController: Object.assign(TestController, TestController),
    Settings: Object.assign(Settings, Settings),
    DocsController: Object.assign(DocsController, DocsController),
    DevloperController: Object.assign(DevloperController, DevloperController),
    DashboardController: Object.assign(DashboardController, DashboardController),
    SearchController: Object.assign(SearchController, SearchController),
    UserController: Object.assign(UserController, UserController),
    ContactController: Object.assign(ContactController, ContactController),
    TagController: Object.assign(TagController, TagController),
    RoleController: Object.assign(RoleController, RoleController),
    TestEmailController: Object.assign(TestEmailController, TestEmailController),
    LanguageController: Object.assign(LanguageController, LanguageController),
    Import: Object.assign(Import, Import),
    ActivityLogController: Object.assign(ActivityLogController, ActivityLogController),
    NotificationController: Object.assign(NotificationController, NotificationController),
    BackupController: Object.assign(BackupController, BackupController),
    Auth: Object.assign(Auth, Auth),
}

export default Controllers