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

Skip to content
Snippets Groups Projects
search.module.ts 912 B
Newer Older
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';

import { GitSearchV2SharedModule } from 'app/shared/shared.module';
import { SearchComponent } from 'app/search/search.component';
import { SEARCH_ROUTE } from 'app/search/search-routing.module';
import { MetadataComponent } from 'app/search/metadata/metadata.component';
import { HighlightingComponent } from 'app/search/highlighting/highlighting.component';
import { QueryParamModule } from '@ngqp/core';
import { NgSelectModule } from '@ng-select/ng-select';
Daniel Rainer's avatar
Daniel Rainer committed
import { MetadataMessageService } from 'app/search/metadata/metadata-message.service';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

@NgModule({
  imports: [GitSearchV2SharedModule, RouterModule.forChild([SEARCH_ROUTE]), QueryParamModule, NgSelectModule],
  declarations: [SearchComponent, MetadataComponent, HighlightingComponent],
Daniel Rainer's avatar
Daniel Rainer committed
  providers: [MetadataMessageService],
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
})
export class SearchModule {}