mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 13:26:47 +01:00
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
|
import { CommandFactory } from 'nest-commander';
|
||
|
import { AppModule } from './app.module';
|
||
|
|
||
|
async function bootstrap() {
|
||
|
await CommandFactory.run(AppModule, ['warn', 'error']);
|
||
|
}
|
||
|
bootstrap();
|