mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
9 lines
208 B
TypeScript
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();
|