From 10d8959178a279eb3853549ec31a31026d6a938d Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 30 Jul 2017 15:40:20 +0200 Subject: [PATCH] Remove unused factory. --- src/operations/operation.factory.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/operations/operation.factory.ts diff --git a/src/operations/operation.factory.ts b/src/operations/operation.factory.ts deleted file mode 100644 index 6e79a00..0000000 --- a/src/operations/operation.factory.ts +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = function($resource) { - return $resource( - '/api/operation/:id', { - id: '@id' - } - ); -};