This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
app.module.ts 1.88 KiB
Newer Older
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

import './vendor';
import { GitSearchV2SharedModule } from 'app/shared/shared.module';
import { GitSearchV2CoreModule } from 'app/core/core.module';
import { GitSearchV2AppRoutingModule } from './app-routing.module';
import { GitSearchV2HomeModule } from './home/home.module';
import { GitSearchV2EntityModule } from './entities/entity.module';
import { TagInputModule } from 'ngx-chips';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { MainComponent } from './layouts/main/main.component';
import { NavbarComponent } from './layouts/navbar/navbar.component';
import { FooterComponent } from './layouts/footer/footer.component';
import { PageRibbonComponent } from './layouts/profiles/page-ribbon.component';
import { ActiveMenuDirective } from './layouts/navbar/active-menu.directive';
import { ErrorComponent } from './layouts/error/error.component';
import { QueryParamModule } from '@ngqp/core';
import { CacheService } from 'app/shared/service/cache.service';
import { DatapolicyComponent } from './layouts/datapolicy/datapolicy.component';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

@NgModule({
  imports: [
    BrowserModule,
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    GitSearchV2SharedModule,
    GitSearchV2CoreModule,
    GitSearchV2HomeModule,
    // jhipster-needle-angular-add-module JHipster will add new module here
    GitSearchV2EntityModule,
    GitSearchV2AppRoutingModule,
    QueryParamModule,
    TagInputModule,
    BrowserAnimationsModule,
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
  ],
  declarations: [MainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, ActiveMenuDirective, FooterComponent, DatapolicyComponent],
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
  bootstrap: [MainComponent],
  providers: [CacheService],
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
})
export class GitSearchV2AppModule {}