Skip to content

Commit

Permalink
fix: remove void from main.ts,js
Browse files Browse the repository at this point in the history
  • Loading branch information
devule committed Dec 12, 2022
1 parent 739e7cc commit 0ec48d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/application/files/js/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
void bootstrap();
bootstrap();
2 changes: 1 addition & 1 deletion src/lib/application/files/ts/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
void bootstrap();
bootstrap();

0 comments on commit 0ec48d8

Please sign in to comment.