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

Skip to content
Snippets Groups Projects
search.module.ts 912 B
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';
import { MetadataMessageService } from 'app/search/metadata/metadata-message.service';

@NgModule({
  imports: [GitSearchV2SharedModule, RouterModule.forChild([SEARCH_ROUTE]), QueryParamModule, NgSelectModule],
  declarations: [SearchComponent, MetadataComponent, HighlightingComponent],
  providers: [MetadataMessageService],
})
export class SearchModule {}