16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
|
import { NgModule} from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
import { RouterModule } from '@angular/router';
|
||
|
import {Meta} from './metaService';
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule
|
||
|
|
||
|
],
|
||
|
providers:[ Meta]
|
||
|
})
|
||
|
export class MetaModule {}
|