Skip to content

Instantly share code, notes, and snippets.

@AlexLakatos
Forked from gsans/LanguagesServiceHttp.js
Created July 21, 2017 11:09
Show Gist options
  • Select an option

  • Save AlexLakatos/89e4e7cccff6a20e1ecbf9eb7de07bac to your computer and use it in GitHub Desktop.

Select an option

Save AlexLakatos/89e4e7cccff6a20e1ecbf9eb7de07bac to your computer and use it in GitHub Desktop.
LanguagesServiceHttp
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