Alterando informações de perfil

This commit is contained in:
Matheus Albino Brunhara
2022-05-24 20:01:01 -05:00
parent 650d8ecef3
commit 4d2eac45d2
7 changed files with 52 additions and 12 deletions

View File

@@ -34,6 +34,8 @@ app.use((err: Error, request: Request, response: Response, _: NextFunction) => {
});
});
app.listen(3333, () => {
console.log('🚀 Server started on port 3333!');
const port = 10002
app.listen(port, () => {
console.log(`🚀 Server started on port ${port}!`);
});