Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active May 25, 2018 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/5a715eca7fd99ff4b41700c3f7fab872 to your computer and use it in GitHub Desktop.
Save uno-de-piera/5a715eca7fd99ff4b41700c3f7fab872 to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
@Injectable()
export class AuthService {
}
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AuthService } from './auth.service';
@NgModule({
imports: [
CommonModule,
],
declarations: [LoginComponent],
providers: [AuthService]
})
export class AuthModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment