require all services in one go

This commit is contained in:
counterweight 2025-03-05 16:18:09 +01:00
parent 54cb13d1e5
commit 1cf303c31d
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 32 additions and 13 deletions

15
src/services/index.js Normal file
View file

@ -0,0 +1,15 @@
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 offerService = require('../services/offerService');
module.exports = {
invitesService,
nostrService,
loginService,
sessionService,
profileService,
offerService,
};