Skip to content

Instantly share code, notes, and snippets.

@gsans
Last active July 21, 2017 11:09
Show Gist options
  • Save gsans/6ae449718bc12c253dec to your computer and use it in GitHub Desktop.
Save gsans/6ae449718bc12c253dec 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