teableio/teable

View on GitHub
apps/nestjs-backend/src/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { INestApplication } from '@nestjs/common';
import { bootstrap } from './bootstrap';

let nestApp: INestApplication | undefined;

(async () => {
  nestApp = await bootstrap();
})();

export const app = nestApp;