Skip to content

Instantly share code, notes, and snippets.

@jsinglet
Created September 5, 2019 17:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsinglet/a28b25537c9d0ec1553524ffb788cea4 to your computer and use it in GitHub Desktop.
Save jsinglet/a28b25537c9d0ec1553524ffb788cea4 to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
import { LoginService } from './login.service';
@Injectable({
providedIn: 'root'
})
export class Client2loginService extends LoginService {
constructor() { super(); }
login(username: string, password: string) : boolean {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment