mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-27 00:54:54 +00:00
feat: finish create and inquire application api and handle response and errors
This commit is contained in:
8
src/card/card.module.ts
Normal file
8
src/card/card.module.ts
Normal 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 {}
|
||||
Reference in New Issue
Block a user