From e285ddcafa301f2c557ade4d0aeeacf83eaa201a Mon Sep 17 00:00:00 2001
From: "Fabien \"egg\" O'Carroll" <fabien@allou.is>
Date: Tue, 12 Dec 2023 16:04:43 +0700
Subject: [PATCH] Fixed naming of app.module.ts

---
 ghost/ghost/src/index.ts                               | 2 +-
 ghost/ghost/src/nestjs/{AppModule.ts => app.module.ts} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename ghost/ghost/src/nestjs/{AppModule.ts => app.module.ts} (100%)

diff --git a/ghost/ghost/src/index.ts b/ghost/ghost/src/index.ts
index 057aeafab9..21460b5529 100644
--- a/ghost/ghost/src/index.ts
+++ b/ghost/ghost/src/index.ts
@@ -1,5 +1,5 @@
 import 'reflect-metadata';
-import {AppModule} from './nestjs/AppModule';
+import {AppModule} from './nestjs/app.module';
 import {NestApplication, NestFactory} from '@nestjs/core';
 import {registerEvents} from './common/decorators/handle-event.decorator';
 
diff --git a/ghost/ghost/src/nestjs/AppModule.ts b/ghost/ghost/src/nestjs/app.module.ts
similarity index 100%
rename from ghost/ghost/src/nestjs/AppModule.ts
rename to ghost/ghost/src/nestjs/app.module.ts