Skip to content

Commit

Permalink
Push
Browse files Browse the repository at this point in the history
  • Loading branch information
BlaNKtext committed Aug 19, 2021
1 parent e5c4f88 commit b7bc3ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/api/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const hostname = '127.0.0.1';
const postport = 3000;
const getport = 3001;

var a = [];
var a = ["Among Us"];

const postserver = http.createServer((req, res) => {
var q = url.parse(req.url, true).query;
Expand All @@ -32,7 +32,7 @@ const postserver = http.createServer((req, res) => {
}
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end("");
res.end("Shitting");
});

const getserver = http.createServer((req, res) => {
Expand Down

0 comments on commit b7bc3ce

Please sign in to comment.