-
-
Save AlexLakatos/89e4e7cccff6a20e1ecbf9eb7de07bac to your computer and use it in GitHub Desktop.
LanguagesServiceHttp
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
| export class LanguagesServiceHttp { | |
| constructor(private http:Http) { } | |
| get(){ | |
| return this.http.get('api/languages.json') | |
| .map(response => response.json()); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment