feat: implement database module and service with PostgreSQL integration and migrations support

This commit is contained in:
Mathis HERRIOT
2026-01-05 12:07:12 +01:00
parent fd7409fe09
commit 72f3bb7723
2 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Module } from "@nestjs/common";
import { ConfigModule } from "@nestjs/config";
import { DatabaseService } from "./database.service";
@Module({
imports: [ConfigModule],
providers: [DatabaseService],
exports: [DatabaseService],
})
export class DatabaseModule {}