0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 13:32:39 +00:00

Removed spaces before and after arrow in callback function

This commit is contained in:
blitzher
2021-08-29 00:54:51 +02:00
parent 2b89efc923
commit c541fd551e

View File

@@ -280,6 +280,6 @@ app.use((err, req, res, next)=>{
//^=====--------------------------------------=====^//
const PORT = process.env.PORT || config.get('web_port') || 8000;
app.listen(PORT, () => {
app.listen(PORT, ()=>{
console.log(`server on port:${PORT}`);
});