summaryrefslogtreecommitdiff
path: root/lib/tools
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-07-21 04:48:52 +0200
committerJules Laplace <julescarbon@gmail.com>2017-07-21 04:48:52 +0200
commitd41070c7b00fafc974a1a6e7b6d1b42391fa57ed (patch)
tree4178eba89627e8581cdc5eea65bf7f11591f6b45 /lib/tools
parentd02cbad01f3abfa8a1aad0b55b8bd9cf544090cf (diff)
all async paths working
Diffstat (limited to 'lib/tools')
-rw-r--r--lib/tools/index.js14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/tools/index.js b/lib/tools/index.js
index 8415e79..d2a797d 100644
--- a/lib/tools/index.js
+++ b/lib/tools/index.js
@@ -1,7 +1,15 @@
module.exports = {
+ sleep: {
+ cmd: process.env.PYTHON_BINARY,
+ script: 'python/sleep.py',
+ ary: 0,
+ output: false,
+ },
nsatf: {
cmd: process.env.PYTHON_BINARY,
- script: 'nsatf.py',
- }
-} \ No newline at end of file
+ script: 'python/nsatf.py',
+ ary: 2,
+ output: true,
+ },
+}