summaryrefslogtreecommitdiff
path: root/src/services/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/index.ts')
-rw-r--r--src/services/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/services/index.ts b/src/services/index.ts
index 2b0b17b..df2305c 100644
--- a/src/services/index.ts
+++ b/src/services/index.ts
@@ -1,3 +1,4 @@
+import accounts from './accounts';
import contractors from './contractors';
import waybills from './waybills';
import transfers from './transfers';
@@ -9,6 +10,7 @@ const services = [
products,
waybills,
transfers,
+ accounts,
];
services.forEach(service => registerServiceHooks(service.route));