mirror of
https://github.com/fergalmoran/shortio.git
synced 2026-02-18 14:04:30 +00:00
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
'use strict'
|
|
|
|
angular.module('shortioApp')
|
|
.factory('urlResource', function ($resource) {
|
|
return $resource('/api/urls/:id', {id: '@id'});
|
|
});
|