Changed Port to 9286

This commit is contained in:
Matthew Patrick 2021-11-21 17:43:02 +07:00
parent f61f73e952
commit 169a8c482a

View file

@ -30,7 +30,7 @@ app.use(function (req, res, next) {
next();
});
app.listen("3000", () => {
console.log("Server is running on port : 3000");
app.listen("9286", () => {
console.log("Server is running on port : 9286");
});
module.exports = app;