chore(backend-api): ♻️ Standardize module configurations in app.module.ts across feature modules

This commit is contained in:
Lilith 2026-01-26 00:58:27 -08:00
parent 4f5db523ad
commit be4ccb3624
10 changed files with 0 additions and 29 deletions

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { HttpModule } from '@nestjs/axios';
import { CacheModule } from '@nestjs/cache-manager';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { HttpModule } from '@nestjs/axios';
import { BullModule } from '@nestjs/bullmq';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { DOMAIN_EVENTS_QUEUE } from '@lilith/domain-events';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { BullModule } from '@nestjs/bullmq';

View file

@ -1,6 +1,4 @@
import { createRequire } from 'module';
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { DomainEventsModule } from '@lilith/domain-events';
import { MinioModule } from '@lilith/minio/nestjs';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { DomainEventsModule } from '@lilith/domain-events';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { Module } from '@nestjs/common';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { BullModule } from '@nestjs/bullmq';
import { Module } from '@nestjs/common';

View file

@ -1,6 +1,3 @@
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { TypeOrmModule } from '@nestjs/typeorm';

View file

@ -1,8 +1,5 @@
// Root application module
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { buildDeploymentRegistry } from '@lilith/service-registry';
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';