Skip to content
Snippets Groups Projects
shared.module.ts 558 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * 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 { sharedComponents } from './components';
    import { sharedPipes } from './pipes';
    
    @NgModule({
        declarations: [
            sharedComponents,
            sharedPipes
        ],
        exports: [
            sharedComponents,
            sharedPipes
        ]
    })
    export class SharedModule { }