tera.js 232 B

1234567891011
  1. angular.module('teraService', [])
  2. // super simple service
  3. // each function returns a promise object
  4. .factory('Tera', ['$http',function($http) {
  5. return {
  6. get : function() {
  7. return $http.get('/api/tera');
  8. }
  9. }
  10. }]);