formatting

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-08-05 14:11:12 -04:00
parent f7c0be8eb6
commit e30573391e
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ async function setupAPI() {
app.use(express.static('frontend'));
app.listen(config.PORT);
console.log(`Server started on port: ${config.PORT}...`);
console.log(`Server started on port: ${config.PORT}`);
return app;
}