АL

Size: a a a
АL

АL
АL


Я

АL
R
Я
Я

Я

Я
C☭
Я
Я
C☭
C☭
'use strict';
function UserService(
$http
) {
return {
getUsers: getUsers
};
function getUsers() {
return $http.get('/api/users').then(function(resp){return resp.data});
}
}
angular
.module('myApp')
.factory('UserService', ['$http', UserService]);
AK
R
C☭
R
C☭