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