Guest User

Untitled

a guest
Jan 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. const cron = require('node-cron');
  2.  
  3. const exampletask = require('./exampletask');
  4.  
  5. cron.schedule('0 9 * * * *', () => {
  6. exampletask.main();
  7. console.log('task completed');
  8. });
Add Comment
Please, Sign In to add comment