Skip to content

Commit

Permalink
refactor: improve imports in main.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrdlt committed Apr 17, 2024
1 parent c29f976 commit 48347e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { NestFactory } from '@nestjs/core';
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';

import { AppModule } from './app.module';
import { nonNullable } from './lib/utils';
import { PairSyncService } from './tasks/pair-sync/pair-sync.service';
import { AppModule } from '@/app.module';
import { nonNullable } from '@/lib/utils';
import { PairSyncService } from '@/tasks/pair-sync/pair-sync.service';

const version = nonNullable(process.env.npm_package_version);
async function bootstrap() {
Expand Down

0 comments on commit 48347e7

Please sign in to comment.