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