Skip to content

Commit f820f67

Browse files
committed
refactor: reorder imports for better organization in app.module.ts
1 parent d955f52 commit f820f67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import { Logger, Module } from '@nestjs/common';
22
import { ConfigModule, ConfigService } from '@nestjs/config';
33
import { MongooseModule, MongooseModuleFactoryOptions } from '@nestjs/mongoose';
44

5-
import { validate } from './config/EnvironmentVariables';
65
import { AuthModule } from './auth/auth.module';
6+
import { validate } from './config/EnvironmentVariables';
77
import { FileModule } from './file/file.module';
88
import { ParseTokenPipe } from './parseToken';
9-
import { SongBrowserModule } from './song-browser/song-browser.module';
109
import { SongModule } from './song/song.module';
10+
import { SongBrowserModule } from './song-browser/song-browser.module';
1111
import { UserModule } from './user/user.module';
1212

1313
@Module({

0 commit comments

Comments
 (0)