import Internal from './Internal'
import Auth from './Auth'
import DashboardController from './DashboardController'
import SearchController from './SearchController'
import UserController from './UserController'
import MediaController from './MediaController'
import ContactController from './ContactController'
import TagController from './TagController'
import BranchController from './BranchController'
import TaxController from './TaxController'
import RoleController from './RoleController'
import Settings from './Settings'
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 TestController from './TestController'

const Controllers = {
    Internal: Object.assign(Internal, Internal),
    Auth: Object.assign(Auth, Auth),
    DashboardController: Object.assign(DashboardController, DashboardController),
    SearchController: Object.assign(SearchController, SearchController),
    UserController: Object.assign(UserController, UserController),
    MediaController: Object.assign(MediaController, MediaController),
    ContactController: Object.assign(ContactController, ContactController),
    TagController: Object.assign(TagController, TagController),
    BranchController: Object.assign(BranchController, BranchController),
    TaxController: Object.assign(TaxController, TaxController),
    RoleController: Object.assign(RoleController, RoleController),
    Settings: Object.assign(Settings, Settings),
    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),
    TestController: Object.assign(TestController, TestController),
}

export default Controllers