missing errors import
This commit is contained in:
parent
00670f051f
commit
0da67c6104
1 changed files with 4 additions and 0 deletions
|
|
@ -1,4 +1,6 @@
|
||||||
|
const models = require('../models');
|
||||||
const constants = require('../constants');
|
const constants = require('../constants');
|
||||||
|
const errors = require('../errors');
|
||||||
|
|
||||||
class ServicesProvider {
|
class ServicesProvider {
|
||||||
constructor() {}
|
constructor() {}
|
||||||
|
|
@ -12,7 +14,9 @@ class ServicesProvider {
|
||||||
|
|
||||||
const NostrServiceProvider = require('../services/nostrService');
|
const NostrServiceProvider = require('../services/nostrService');
|
||||||
const nostrService = new NostrServiceProvider({
|
const nostrService = new NostrServiceProvider({
|
||||||
|
models: models,
|
||||||
constants: constants,
|
constants: constants,
|
||||||
|
errors: errors,
|
||||||
}).provide();
|
}).provide();
|
||||||
const InvitesServiceProvider = require('../services/invitesService');
|
const InvitesServiceProvider = require('../services/invitesService');
|
||||||
const invitesService = new InvitesServiceProvider({
|
const invitesService = new InvitesServiceProvider({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue