import AppSettingsController from './AppSettingsController'
import ModuleSettingsController from './ModuleSettingsController'
import ProfileController from './ProfileController'
import ProfileSettingsController from './ProfileSettingsController'
import NotificationSettingsController from './NotificationSettingsController'
import PasswordController from './PasswordController'
import GeneralSettingsController from './GeneralSettingsController'
import EmailSettingController from './EmailSettingController'
import EmailTemplateController from './EmailTemplateController'
import PackageManagementController from './PackageManagementController'
import SystemSettingsController from './SystemSettingsController'
import ThemeSettingsController from './ThemeSettingsController'
import DashboardSettingsController from './DashboardSettingsController'

const Settings = {
    AppSettingsController: Object.assign(AppSettingsController, AppSettingsController),
    ModuleSettingsController: Object.assign(ModuleSettingsController, ModuleSettingsController),
    ProfileController: Object.assign(ProfileController, ProfileController),
    ProfileSettingsController: Object.assign(ProfileSettingsController, ProfileSettingsController),
    NotificationSettingsController: Object.assign(NotificationSettingsController, NotificationSettingsController),
    PasswordController: Object.assign(PasswordController, PasswordController),
    GeneralSettingsController: Object.assign(GeneralSettingsController, GeneralSettingsController),
    EmailSettingController: Object.assign(EmailSettingController, EmailSettingController),
    EmailTemplateController: Object.assign(EmailTemplateController, EmailTemplateController),
    PackageManagementController: Object.assign(PackageManagementController, PackageManagementController),
    SystemSettingsController: Object.assign(SystemSettingsController, SystemSettingsController),
    ThemeSettingsController: Object.assign(ThemeSettingsController, ThemeSettingsController),
    DashboardSettingsController: Object.assign(DashboardSettingsController, DashboardSettingsController),
}

export default Settings