fix build

Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov 2021-08-17 16:47:29 +02:00
parent 895d35a7af
commit 0bade3df2f
No known key found for this signature in database
GPG Key ID: C8787EFEB4B64AF0

View File

@ -17,6 +17,10 @@
import express from 'express'
import fileUpload from 'express-fileupload'
/**
* @public
* @param port -
*/
export function start (port: number): void {
const app = express()
@ -32,6 +36,6 @@ export function start (port: number): void {
res.status(400).send()
}
})
app.listen(port)
}