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
Daniel Rainer's avatar
Daniel Rainer committed
// currently unused
/*
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
import { NgModule } from '@angular/core';

import { GitSearchV2SharedModule } from 'app/shared/shared.module';
import { SearchComponent } from 'app/search/search.component';
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';
import { SearchDropdownComponent } from './search-dropdown.component';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

@NgModule({
  imports: [GitSearchV2SharedModule, QueryParamModule, NgSelectModule],
  declarations: [SearchComponent, MetadataComponent, HighlightingComponent, SearchDropdownComponent],
  exports: [SearchComponent],
Daniel Rainer's avatar
Daniel Rainer committed
  providers: [MetadataMessageService],
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
})
export class SearchModule {}
Daniel Rainer's avatar
Daniel Rainer committed
*/