randydev commited on
Commit
790f8c5
·
verified ·
1 Parent(s): 7d6fb04

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +4 -0
index.js CHANGED
@@ -70,6 +70,10 @@ app.get("/policy", ( req, res ) => {
70
  res.sendFile(path.join(__dirname + "/public/policy.html"));
71
  });
72
 
 
 
 
 
73
  app.use(async (req, res, next) => {
74
  await CheckMilWares.handle(req, res, next);
75
  });
 
70
  res.sendFile(path.join(__dirname + "/public/policy.html"));
71
  });
72
 
73
+ app.get("scraper/read", ( req, res ) => {
74
+ res.sendFile(path.join(__dirname + "/public/docs.html"));
75
+ });
76
+
77
  app.use(async (req, res, next) => {
78
  await CheckMilWares.handle(req, res, next);
79
  });