Files
correos_api/src/main.ts
T

9 lines
228 B
TypeScript
Raw Normal View History

2025-02-27 12:41:56 -06:00
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
2025-03-10 13:39:53 -06:00
await app.listen(process.env.PORT ?? 3000);
2025-02-27 12:41:56 -06:00
}
bootstrap();