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

crud_openapi_angular_client_app.templates.src.app.app.module.ts.ftl Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';

import { AppRoutingModule } from './app-routing.module';
import { CoreModule } from './core/core.module';
import { LayoutModule } from './layout/layout.module';
import { HomeModule } from './home/home.module';

import { AppComponent } from './app.component';
import { LoginComponent } from './login/login.component';
import { ${variables.etoName?cap_first}Module } from './${variables.etoName?lower_case}/${variables.etoName?lower_case}.module';

@NgModule({
  declarations: [
    AppComponent,
    LoginComponent,
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    LayoutModule,
    AppRoutingModule,
    CoreModule,
    HomeModule,
    ${variables.etoName?cap_first}Module,
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy