added connection to the dataBase

This commit is contained in:
2025-09-04 21:04:15 -04:00
parent 94973314d1
commit c3444b619a
13 changed files with 857 additions and 73 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { UserService } from './user.service';
import { UserController } from './user.controller';
@Module({
controllers: [UserController],
providers: [UserService],
})
export class UserModule {}