iamolegga/nestjs-cookie-session

View on GitHub
example/src/main.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  await app.listen(3000);
}
bootstrap();