Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Wiaderek authored and Tomasz Wiaderek committed Mar 27, 2024
1 parent 519ac01 commit 45dd059
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/server/src/modules/tldraw/tldraw-test.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { DynamicModule, Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { createConfigModuleOptions } from '@src/config';
import { Logger, LoggerModule } from '@src/core/logger';
import { TldrawRedisFactory, TldrawRedisService } from './redis';
import { config } from './config';
import { TldrawController } from './controller/tldraw.controller';
import { MetricsService } from './metrics';
Expand All @@ -17,7 +18,7 @@ const imports = [
ConfigModule.forRoot(createConfigModuleOptions(config)),
HttpModule,
];
const providers = [Logger, TldrawService, TldrawRepo, MetricsService];
const providers = [Logger, TldrawService, TldrawRepo, MetricsService, TldrawRedisFactory, TldrawRedisService];
@Module({
imports,
providers,
Expand Down

0 comments on commit 45dd059

Please sign in to comment.