first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { RestaurantService } from './restaurant.service';
|
||||
import { RestaurantController } from './restaurant.controller';
|
||||
import { PrismaModule } from 'src/prisma/prisma.module';
|
||||
|
||||
@Module({
|
||||
imports: [PrismaModule],
|
||||
providers: [RestaurantService],
|
||||
controllers: [RestaurantController],
|
||||
exports: [RestaurantService],
|
||||
})
|
||||
export class RestaurantModule {}
|
||||
Reference in New Issue
Block a user