fix server maybe

This commit is contained in:
root 2020-01-08 07:51:35 +00:00
parent 02c51912b0
commit 921e08e0ff
2 changed files with 3 additions and 9 deletions

View file

@ -106,9 +106,9 @@ module.exports = (client) => {
}
}); */
app.listen(port, hostname, () => {
app.listen(port, () => {
setTimeout(() => {
console.log(`Listening on ${hostname}:${port}`);
console.log(`Listening on ${port}`);
}, 1000 * 3);
});
};