Created
May 25, 2018 14:16
-
-
Save buildmotion/7136a015d017b425367004038c38495e to your computer and use it in GitHub Desktop.
Workspace library dependencies.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from '@angular/core'; | |
import { LibTwoService } from '../../../lib-two/src/public_api'; | |
@Injectable({ | |
providedIn: 'root' | |
}) | |
export class LibOneService { | |
constructor( | |
private serviceTwo: LibTwoService | |
) { } | |
SayHello(message: string): string { | |
// return `${message}`; | |
return this.serviceTwo.SayHello(message); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment