diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-06-04 17:13:07 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-06-04 17:13:07 +0300 |
commit | 2c28d8dd96327db1d51e86eb06573f7597e29cfc (patch) | |
tree | cfc3e3ad31b0b426f59ae7f0a66189c69d47ded3 /api | |
parent | 5bac282b844ef0acec8deddc0e72bce4ac6976e9 (diff) | |
download | arching-kaos-tools-2c28d8dd96327db1d51e86eb06573f7597e29cfc.tar.gz arching-kaos-tools-2c28d8dd96327db1d51e86eb06573f7597e29cfc.tar.bz2 arching-kaos-tools-2c28d8dd96327db1d51e86eb06573f7597e29cfc.zip |
Refactoring
Diffstat (limited to 'api')
-rw-r--r-- | api/routes/getPeers/index.js | 19 | ||||
-rw-r--r-- | api/routes/getTr/index.js | 1 |
2 files changed, 0 insertions, 20 deletions
diff --git a/api/routes/getPeers/index.js b/api/routes/getPeers/index.js index 699cebb..22da56e 100644 --- a/api/routes/getPeers/index.js +++ b/api/routes/getPeers/index.js @@ -1,30 +1,11 @@ -const { spawn } = require('child_process'); const config = require('../../config'); const fs = require('fs'); module.exports = (req, res) => { -// const command = spawn("ak-config", ["get-published"]); const path = config.peersFile; if(fs.existsSync(path)){ res.send(JSON.parse(fs.readFileSync(path))); } else { res.send({"error":"404"}) } -// var buffer = ""; -// command.stdout.on("data", data => { -// buffer = buffer + data; -// }); -// -// command.stderr.on("data", data => { -// console.log(`stderr: ${data}`); -// }); -// -// command.on('error', (error) => { -// console.log(`error: ${error.message}`); -// }); -// -// command.on("close", code => { -// res.send(JSON.parse(fs.Read)); -// console.log(`child process exited with code ${code}`); -// }); }; diff --git a/api/routes/getTr/index.js b/api/routes/getTr/index.js index 25f0c6d..11ef38e 100644 --- a/api/routes/getTr/index.js +++ b/api/routes/getTr/index.js @@ -1,4 +1,3 @@ -const { spawn } = require('child_process'); const fs = require("fs"); const config = require("../../config"); |