aboutsummaryrefslogtreecommitdiff
path: root/api/routes/getChunk
diff options
context:
space:
mode:
Diffstat (limited to 'api/routes/getChunk')
-rw-r--r--api/routes/getChunk/index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/routes/getChunk/index.js b/api/routes/getChunk/index.js
index 6106aad..dc86bd8 100644
--- a/api/routes/getChunk/index.js
+++ b/api/routes/getChunk/index.js
@@ -7,7 +7,8 @@
const fs = require('fs');
const config = require("../../config.js");
-module.exports = (req, res) => {
+function getChunk(req, res)
+{
var args = req.url.split("/");
var hash = args[3];
regex= /[a-f0-9]{128}/
@@ -39,4 +40,4 @@ module.exports = (req, res) => {
res.end(JSON.stringify({error:"No hash"}));
}
}
-
+module.exports = getChunk;