Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 25, 2018 18:22
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/6f575a172f48199b2d54eae83911b715 to your computer and use it in GitHub Desktop.
Save uno-de-piera/6f575a172f48199b2d54eae83911b715 to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
import {AuthModule} from './auth.module';
@Injectable({
providedIn: AuthModule
})
export class AuthService {
constructor() { }
isLogged (): boolean {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment