feat: finish create and inquire application api and handle response and errors

This commit is contained in:
Abdalhamid Alhamad
2025-06-03 14:51:36 +03:00
parent d4fe3b3fc3
commit 1ea1f42169
23 changed files with 1698 additions and 124 deletions

8
src/card/card.module.ts Normal file
View File

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Card } from './entities';
@Module({
imports: [TypeOrmModule.forFeature([Card])],
})
export class CardModule {}