fix: typo in main ts

This commit is contained in:
mahyargdz
2025-02-19 13:02:02 +03:30
parent 3099bcf78e
commit 85328704a0
+2 -2
View File
@@ -27,8 +27,8 @@ async function bootstrap() {
const PORT = configService.getOrThrow<number>("PORT");
await app.listen(PORT, "0.0.0.0", () => {
logger.log(`Server running on http://localhost:${PORT}`);
logger.log(`Swagger running on http://localhost:${PORT}/api-docs`);
logger.log(`Server running at http://localhost:${PORT}`);
logger.log(`Swagger is serving at http://localhost:${PORT}/api-docs`);
});
}
bootstrap();