Child: [146b7d] (diff)

Download this file

services.js    9 lines (7 with data), 209 Bytes

1
2
3
4
5
6
7
8
'use strict';
angular.module('esn.c2net')
.factory('getHelloWorld', function($http) {
return $http.get('/c2net/api/sayhello').then(function(response) {
return response.data.message;
});
});