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