feat(CC-057): add ConsentsModule
This commit is contained in:
parent
497aaa919b
commit
18e427bde6
1 changed files with 5 additions and 0 deletions
5
src/consents/consents.module.ts
Normal file
5
src/consents/consents.module.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ConsentsController } from './consents.controller';
|
||||
|
||||
@Module({ controllers: [ConsentsController] })
|
||||
export class ConsentsModule {}
|
||||
Loading…
Reference in a new issue