All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.modules.global-variable.global-variable.module.ts Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-FileCopyrightText: 2017-2024 Enedis
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 */

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MomentModule } from 'ngx-moment';

import { NgbModule } from '@ng-bootstrap/ng-bootstrap';

import { TranslateModule } from '@ngx-translate/core';

import { SharedModule } from '@shared/shared.module';

import { GlobalVariableEditionComponent } from './components/global-variable-edition/global-variable-edition.component';
import { GlobalVariableRoute } from './global-variable.routes';
import { MoleculesModule } from '../../molecules/molecules.module';


const ROUTES = [
    ...GlobalVariableRoute
];

@NgModule({
    imports: [
        CommonModule,
        RouterModule.forChild(ROUTES),
        FormsModule,
        ReactiveFormsModule,
        SharedModule,
        NgbModule,
        MomentModule,
        TranslateModule,
        MoleculesModule
    ],
    declarations: [
        GlobalVariableEditionComponent
    ]
})
export class GlobalVariableModule {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy