Some checks failed
Build Containers / build-containers-common (push) Has been cancelled
Build Containers / build-containers (amd64, ubuntu-latest) (push) Has been cancelled
Build Containers / build-containers (arm64, ubuntu-24.04-arm) (push) Has been cancelled
Build Containers / build-container-manifest (push) Has been cancelled
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import { initializeSentry } from '@gitroom/nestjs-libraries/sentry/initialize.sentry';
|
|
initializeSentry('cron');
|
|
|
|
import { NestFactory } from '@nestjs/core';
|
|
import { CronModule } from './cron.module';
|
|
|
|
async function start() {
|
|
// some comment again
|
|
await NestFactory.createApplicationContext(CronModule);
|
|
}
|
|
|
|
start();
|