mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { repl } from "@nestjs/core";
|
|
import { AppModule } from "./app.module";
|
|
import { otelSDK } from "./open-telemetry/sdk";
|
|
|
|
async function bootstrap() {
|
|
await otelSDK.start();
|
|
|
|
// TODO: Disable scheduled tasks from SourcesModule when in repl mode
|
|
await repl(AppModule);
|
|
}
|
|
bootstrap();
|