blob: 7f1f9b59b167c6d01afbfd084c6e8bd68b1069ae [file] [log] [blame]
'use strict';
/*
* Virtual Truckroll, enable to perform basic test on user connectivity such as ping, traceroute and tcpdump.
*/
angular.module('xos.helpers')
.service('Truckroll-Collection', function($resource){
return $resource('/api/tenant/truckroll/:truckroll_id/', { truckroll_id: '@id' });
})