[fixed] - eslint

This commit is contained in:
Swapnil Bendal
2024-12-17 19:43:28 +05:30
parent ac7b46c661
commit eb8b1d3c54
7 changed files with 112 additions and 82 deletions

View File

@@ -45,7 +45,7 @@ class App {
public listen(port: number): ReturnType<typeof this.app.listen> {
return this.app.listen(port, () => {
logger.info(`Server listening on port ${config.port}`);
logger.info(`Enviorment :- ${config.env}`);
logger.info(`Environment :- ${config.env}`);
})
}
}