aboutsummaryrefslogtreecommitdiff
path: root/motto/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'motto/index.js')
-rw-r--r--motto/index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/motto/index.js b/motto/index.js
index 77365a8..4a8ed3b 100644
--- a/motto/index.js
+++ b/motto/index.js
@@ -3,14 +3,13 @@ const rateLimit = require("express-rate-limit");
const db = require("../db");
const app = express.Router();
-const fs = require("fs");
-
const apiLimiter = rateLimit({
windowMs: 10 * 60 * 1000,
max: 100,
message: "Access overflow!",
});
+//const fs = require("fs");
//app.get("/sync", (req, res) => {
// fs.readFile(__dirname + "/list.txt", "utf8", (err, data) => {
// if (err) {