mirror of
https://github.com/immich-app/immich.git
synced 2025-12-27 09:14:55 +03: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();
|