Skip to content

Commit

Permalink
Fix import path for WorkerService in tldraw-worker.app.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SevenWaysDP committed Dec 10, 2024
1 parent e85a9aa commit 039f805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/tldraw-worker.app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NestFactory } from '@nestjs/core';
import { WorkerModule } from '../modules/worker/worker.module.js';
import { WorkerService } from 'modules/worker/worker.service.js';
import { WorkerService } from '../modules/worker/worker.service.js';

async function bootstrap(): Promise<void> {
const nestApp = await NestFactory.createApplicationContext(WorkerModule);
Expand Down

0 comments on commit 039f805

Please sign in to comment.