chore(lint): sort imports in app.module and worker after Sentry add

Biome's organizeImports flagged the @sentry/nestjs imports being out of
alphabetical order. Auto-fixed via biome check --write.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Sase Dev
2026-05-10 09:16:20 +00:00
parent 2d6f8392b6
commit b90c0ff244
2 changed files with 2 additions and 2 deletions

View File

@@ -2,8 +2,8 @@ import { resolve } from "node:path";
import { Module } from "@nestjs/common";
import { ConfigModule } from "@nestjs/config";
import { APP_FILTER, APP_GUARD, APP_INTERCEPTOR } from "@nestjs/core";
import { SentryModule } from "@sentry/nestjs/setup";
import { ThrottlerGuard, ThrottlerModule } from "@nestjs/throttler";
import { SentryModule } from "@sentry/nestjs/setup";
import { AdminModule } from "./admin/admin.module";
import { AnalyticsModule } from "./analytics/analytics.module";
import { AuthModule } from "./auth/auth.module";

View File

@@ -4,9 +4,9 @@ import "./telemetry/worker-tracing"; // MUST be early — instruments modules be
import "dotenv/config";
import { Worker } from "bullmq";
import { drizzle } from "drizzle-orm/postgres-js";
import postgres from "postgres";
import Redis from "ioredis";
import OpenAI from "openai";
import postgres from "postgres";
import { QUEUE_NAMES, getBullConnection, getBullTelemetry } from "./jobs/bull.config";
import { processEmexScrape } from "./jobs/processors/emex-scrape.processor";
import { processQueryCleanup } from "./jobs/processors/query-cleanup.processor";