Skip to content

Instantly share code, notes, and snippets.

@emolr
Last active February 23, 2017 16:46
Show Gist options
  • Save emolr/b021cf9da5bcc80b1bc63d1fea7d3942 to your computer and use it in GitHub Desktop.
Save emolr/b021cf9da5bcc80b1bc63d1fea7d3942 to your computer and use it in GitHub Desktop.
// article-form.module.ts
import {NgModule} from '@angular/core';
import {CommonModule} from "@angular/common";
import {ArticleFormBackend} from "./article-form.backend";
import {ArticleFormService} from "./article-form.service";
@NgModule({
imports: [
CommonModule
],
providers: [
ArticleFormBackend,
ArticleFormService
],
})
export class ArticleFormModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment