diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-03-30 01:09:30 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-03-30 01:09:30 +0300 |
commit | e2da6d2db20093ebd2a65aad35c9991ab1a02176 (patch) | |
tree | e5c77a8f4a6fd106b13b659e248cab5768d07cdc /api/routes/showNSEntriesFile | |
parent | a4901ad47d2945e9a6c6616661840c97ebbf03e7 (diff) | |
download | arching-kaos-tools-e2da6d2db20093ebd2a65aad35c9991ab1a02176.tar.gz arching-kaos-tools-e2da6d2db20093ebd2a65aad35c9991ab1a02176.tar.bz2 arching-kaos-tools-e2da6d2db20093ebd2a65aad35c9991ab1a02176.zip |
Introducing an HTTP JSON API
Diffstat (limited to 'api/routes/showNSEntriesFile')
-rw-r--r-- | api/routes/showNSEntriesFile/index.js | 15 |
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 |