Files
examples/nestjs/src/main.ts
2024-06-30 20:39:01 -06:00

9 lines
208 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();