mirror of
https://git.meshkee.com/BaloutPastry/backend.git
synced 2026-08-11 22:31:00 +04:30
Initial commit of Balout Pastry NestJS API.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { FlavorsController } from './flavors.controller';
|
||||
import { FlavorsService } from './flavors.service';
|
||||
|
||||
@Module({
|
||||
controllers: [FlavorsController],
|
||||
providers: [FlavorsService],
|
||||
exports: [FlavorsService],
|
||||
})
|
||||
export class FlavorsModule {}
|
||||
Reference in New Issue
Block a user