🎉 wip: add the discover functionality

This commit is contained in:
asifrahaman13 2024-06-25 20:29:08 +05:30
parent 8b90666558
commit 708ce4dc80

View file

@ -36,7 +36,7 @@ async function discover() {
const job = new CronJob('*/60 * * * * *', () => {
discover();
console.log('This job runs every 30 seconds.');
console.log('This job runs every 60 seconds.');
});
export default job;