feat(CC-057): add ConsentsModule

This commit is contained in:
admin-valentin 2026-08-01 21:00:08 +00:00
parent 497aaa919b
commit 18e427bde6

View file

@ -0,0 +1,5 @@
import { Module } from '@nestjs/common';
import { ConsentsController } from './consents.controller';
@Module({ controllers: [ConsentsController] })
export class ConsentsModule {}