import gracefulShutdown from "http-graceful-shutdown"; import app from "./app"; import { initIO } from "./libs/socket"; import { logger } from "./utils/logger"; import { StartAllWhatsAppsSessions } from "./services/WbotServices/StartAllWhatsAppsSessions"; import { startSchedulingMonitor } from "./helpers/SchedulingNotifySendMessage" import { startWhoIsOnlineMonitor } from "./helpers/WhoIsOnlineMonitor" const server = app.listen(process.env.PORT, () => { logger.info(`Server started on port: ${process.env.PORT}`); }); initIO(server); StartAllWhatsAppsSessions(); gracefulShutdown(server); startSchedulingMonitor(5000) startWhoIsOnlineMonitor(2000)