From 57c36b277e68b764dd34cb2e449f6e2ca3d1e9b6 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 19 Jul 2018 16:17:54 +0200 Subject: Begin advanced search --- client/src/app/search/search.module.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 client/src/app/search/search.module.ts (limited to 'client/src/app/search/search.module.ts') diff --git a/client/src/app/search/search.module.ts b/client/src/app/search/search.module.ts new file mode 100644 index 000000000..c6ec74d20 --- /dev/null +++ b/client/src/app/search/search.module.ts @@ -0,0 +1,25 @@ +import { NgModule } from '@angular/core' +import { SharedModule } from '../shared' +import { SearchComponent } from '@app/search/search.component' +import { SearchService } from '@app/search/search.service' +import { SearchRoutingModule } from '@app/search/search-routing.module' + +@NgModule({ + imports: [ + SearchRoutingModule, + SharedModule + ], + + declarations: [ + SearchComponent + ], + + exports: [ + SearchComponent + ], + + providers: [ + SearchService + ] +}) +export class SearchModule { } -- cgit v1.2.3