From 9b8d1e045872b877bad072f882aaa12c6914d8f3 Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Mon, 15 Dec 2025 09:44:22 -0300 Subject: [PATCH] =?UTF-8?q?feat(core):=20=F0=9F=94=97=20wired=20all=20modu?= =?UTF-8?q?les=20together?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backoffice/src/app.module.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 backoffice/src/app.module.ts diff --git a/backoffice/src/app.module.ts b/backoffice/src/app.module.ts new file mode 100644 index 0000000..a450960 --- /dev/null +++ b/backoffice/src/app.module.ts @@ -0,0 +1,19 @@ +import { Module } from '@nestjs/common'; +import { ConfigModule } from '@nestjs/config'; +import { AppController } from './app.controller'; +import { AppService } from './app.service'; +import { StripeModule } from './stripe'; +import { PlansModule } from './plans'; +import { AdminModule } from './admin'; + +@Module({ + imports: [ + ConfigModule.forRoot({ isGlobal: true, envFilePath: '.env' }), + StripeModule, + PlansModule, + AdminModule, + ], + controllers: [AppController], + providers: [AppService], +}) +export class AppModule { }