class ServicesProvider { constructor() {} provide() { const invitesService = require('../services/invitesService'); const nostrService = require('../services/nostrService'); const loginService = require('../services/loginService'); const sessionService = require('../services/sessionService'); const profileService = require('../services/profileService'); const OfferServiceProvider = require('../services/offerService'); const offerService = new OfferServiceProvider().provide(); return { invitesService, nostrService, loginService, sessionService, profileService, offerService, }; } } module.exports = ServicesProvider;