I have cron jobs launch when server start that watch and start an appointment when it's time come but I want to send data to my client through response ,is that possible in cron jobs
I am working with NodeJS and sails
crons.schedule("* * * * * *", async (req, res) => {
res.send("appointment started")
}