mirror of
https://github.com/ershisan99/flashcards-api.git
synced 2025-12-16 12:33:17 +00:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import { Logger } from '@nestjs/common'
|
|
import { CommandFactory } from 'nest-commander'
|
|
|
|
import { AppModule } from './app.module'
|
|
|
|
const bootstrap = async () => {
|
|
await CommandFactory.run(AppModule, new Logger())
|
|
}
|
|
|
|
bootstrap()
|