aboutsummaryrefslogtreecommitdiff
path: root/api/routes/showEntriesFile
diff options
context:
space:
mode:
Diffstat (limited to 'api/routes/showEntriesFile')
-rw-r--r--api/routes/showEntriesFile/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/api/routes/showEntriesFile/index.js b/api/routes/showEntriesFile/index.js
new file mode 100644
index 0000000..3dd1c40
--- /dev/null
+++ b/api/routes/showEntriesFile/index.js
@@ -0,0 +1,14 @@
+const fs = require('fs');
+const config = require('../../config');
+
+/*
+ * Reads ./lol file where the zblocks are saved
+ *
+ * Returns:
+ * - the file, it's already in JSON format.
+ *
+ */
+module.exports = (req, res) => {
+ var data = JSON.parse(fs.readFileSync(config.blocksFile));
+ res.send(data);
+}; \ No newline at end of file