mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00: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();
|