Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean imports
Browse files Browse the repository at this point in the history
Loki-Afro committed Dec 16, 2024

Verified

This commit was signed with the committer’s verified signature.
Loki-Afro Phillip
1 parent 5059962 commit 06fbbcc
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/server/src/apps/fwu-learning-contents.app.ts
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import express from 'express';
import { install as sourceMapInstall } from 'source-map-support';

// application imports
import { LegacyLogger, Logger } from '@src/core/logger';
import { LegacyLogger } from '@src/core/logger';
import { FwuLearningContentsModule } from '@modules/fwu-learning-contents';
import { createRequestLoggerMiddleware } from './helpers/request-logger-middleware';
import { enableOpenApiDocs } from './helpers';
2 changes: 1 addition & 1 deletion apps/server/src/apps/h5p-editor.app.ts
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import express from 'express';
import { install as sourceMapInstall } from 'source-map-support';

// application imports
import { LegacyLogger, Logger } from '@src/core/logger';
import { LegacyLogger } from '@src/core/logger';
import { H5PEditorModule } from '@modules/h5p-editor';
import { createRequestLoggerMiddleware } from './helpers/request-logger-middleware';
import { enableOpenApiDocs } from './helpers';
4 changes: 2 additions & 2 deletions apps/server/src/apps/management.app.ts
Original file line number Diff line number Diff line change
@@ -8,15 +8,15 @@ import express from 'express';
import { install as sourceMapInstall } from 'source-map-support';

// application imports
import { LegacyLogger, Logger } from '@src/core/logger';
import { LegacyLogger } from '@src/core/logger';
import { ManagementServerModule } from '@modules/management';
import { createRequestLoggerMiddleware } from './helpers/request-logger-middleware';
import { enableOpenApiDocs } from './helpers';

async function bootstrap() {
sourceMapInstall();

// create the NestJS application on a seperate express instance
// create the NestJS application on a separate express instance
const nestExpress = express();

const nestExpressAdapter = new ExpressAdapter(nestExpress);

0 comments on commit 06fbbcc

Please sign in to comment.