mirror of
https://github.com/fergalmoran/roboto-promoto.git
synced 2026-01-07 09:25:54 +00:00
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
'use strict';
|
|
|
|
angular.module('robotoPromotoApp')
|
|
.factory('Session', function ($resource) {
|
|
return $resource('/api/session/');
|
|
});
|