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 b94380d..499ab68 100644
--- a/src/services/index.ts
+++ b/src/services/index.ts
@@ -1,4 +1,5 @@
import { Application } from '@feathersjs/express';
+import Accounts from './accounts.service';
import Products from './products.service';
import Contractors from './contractors.service';
import Waybills from './waybills.service';
@@ -9,6 +10,7 @@ import sortByDate from '../hooks/sortByDate';
import ignoreCaseRegex from '../hooks/ignoreCaseRegex';
export default (app: Application): void => {
+ app.configure(Accounts);
app.configure(Products);
app.configure(Contractors);
app.configure(Waybills);