mirror of
https://github.com/fergalmoran/roboto-promoto.git
synced 2025-12-22 09:37:37 +00:00
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
'use strict';
|
|
|
|
angular.module('robotoPromotoApp')
|
|
.factory('Session', function ($resource) {
|
|
return $resource('/api/session/');
|
|
});
|