diff --git a/src/consents/consents.module.ts b/src/consents/consents.module.ts new file mode 100644 index 0000000..fce824f --- /dev/null +++ b/src/consents/consents.module.ts @@ -0,0 +1,5 @@ +import { Module } from '@nestjs/common'; +import { ConsentsController } from './consents.controller'; + +@Module({ controllers: [ConsentsController] }) +export class ConsentsModule {}