services provider takes sequelize

This commit is contained in:
counterweight 2025-03-22 16:59:17 +01:00
parent 369aa6a6ed
commit 3b995dfc70
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 3 additions and 1 deletions

View file

@ -1,8 +1,9 @@
class ServicesProvider {
constructor({ models, constants, errors }) {
constructor({ models, constants, errors, sequelize }) {
this.models = models;
this.constants = constants;
this.errors = errors;
this.sequelize = sequelize;
}
provide() {