Skip to content

Commit

Permalink
Add transitive dep example
Browse files Browse the repository at this point in the history
  • Loading branch information
Zack Griesinger committed Mar 4, 2022
1 parent e68b8b0 commit 422b295
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/service-a/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { CustomLogger } from '@zgriesinger/logger';

async function bootstrap() {
// Add a comment
const app = await NestFactory.create(AppModule);
app.enableCors({
origin: true
origin: true,
});
await app.listen(3000);
}
Expand Down

0 comments on commit 422b295

Please sign in to comment.