githubUserFactory.js 272 B

12345678910111213
  1. 'use strict';
  2. restApp.factory('githubUserFactory', function($http) {
  3. return {
  4. get: function() {
  5. return $http({
  6. url: 'http://127.0.0.1:8000/hackathon/githubUser/',
  7. method: 'GET',
  8. });
  9. }
  10. };
  11. });