| 12345678910111213141516 |
- const path = require('path')
- const jobDef = {
- timeout: '1s',
- }
-
- /**
- * Actual job instructions
- */
- const jobRun = () => {
- console.log('---')
- console.log('bree started...')
- console.log('---')
- }
- jobRun()
-
- module.exports = { jobName: path.basename(__filename, '.js'), ...jobDef }
|