feat(CC-067): add OutcomeReviewsModule

This commit is contained in:
admin-valentin 2026-08-02 12:13:00 +00:00
parent c2a070b33f
commit 71b2ed43ee

View file

@ -0,0 +1,5 @@
import { Module } from '@nestjs/common';
import { OutcomeReviewsController } from './outcome-reviews.controller';
@Module({ controllers: [OutcomeReviewsController] })
export class OutcomeReviewsModule {}