feat: added hoppscotch-backend as a package

This commit is contained in:
ankitsridhar16
2022-12-05 12:36:11 +05:30
parent a1d69b3210
commit 75219d457a
16 changed files with 2836 additions and 62 deletions

View File

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