From 332aae178718897bc7371d8b58fda89a4559f326 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 21 Apr 2025 19:58:55 +0200 Subject: [PATCH] Reorder imports --- apps/api/src/app/endpoints/watchlist/watchlist.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/app/endpoints/watchlist/watchlist.module.ts b/apps/api/src/app/endpoints/watchlist/watchlist.module.ts index 072c0b43e..15115888b 100644 --- a/apps/api/src/app/endpoints/watchlist/watchlist.module.ts +++ b/apps/api/src/app/endpoints/watchlist/watchlist.module.ts @@ -10,9 +10,9 @@ import { WatchlistService } from './watchlist.service'; @Module({ controllers: [WatchlistController], imports: [ + PrismaModule, TransformDataSourceInRequestModule, - TransformDataSourceInResponseModule, - PrismaModule + TransformDataSourceInResponseModule ], providers: [WatchlistService] })