Files
whale-town-end/src/main.ts

11 lines
281 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);
console.log('Pixel Game Server is running on http://localhost:3000');
}
bootstrap();