-
François Agneray authoredFrançois Agneray authored
search.module.ts 836 B
/**
* This file is part of Anis Client.
*
* @copyright Laboratoire d'Astrophysique de Marseille / CNRS
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import { NgModule } from '@angular/core';
import { SharedModule } from 'src/app/shared/shared.module';
import { SharedSearchModule } from '../shared-search/shared-search.module';
import { SearchRoutingModule, routedComponents } from './search-routing.module';
import { dummiesComponents } from './components';
import { searchPipes } from './pipes';
@NgModule({
imports: [
SharedModule,
SharedSearchModule,
SearchRoutingModule
],
declarations: [
routedComponents,
dummiesComponents,
searchPipes
]
})
export class SearchModule { }