UNPKG
apx-kue
Version:
latest (0.1.1)
0.1.1
0.1.0
Kue initializer and job handler for APX API server
github.com/snailjs/apx-kue
snailjs/apx-kue
apx-kue
/
test
/
tasks
/
hello.js
8 lines
(7 loc)
•
149 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
exports
.
name
=
'hello'
exports
.
description
=
'Just says hi'
exports
.
run
=
function
(
apx,req,done
){ apx.
log
.
info
(
'HI GUYS'
)
done
() }