Skip to content

Instantly share code, notes, and snippets.

@daviddt
Created November 9, 2015 08:59
Show Gist options
  • Save daviddt/90bf4d3dd7a0d8a556cd to your computer and use it in GitHub Desktop.
Save daviddt/90bf4d3dd7a0d8a556cd to your computer and use it in GitHub Desktop.
export default class ExampleService {
constructor($http) {
this.$http = $http;
}
// Example service function
getData () {
return this.$http({method: 'GET', url: './api' });
}
}
ExampleService.$inject = ['$http'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment