Skip to content

Commit b86b41e

Browse files
Ajout du module IdentitiesJsonforms
1 parent 9efb296 commit b86b41e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { Module } from '@nestjs/common';
2+
import { IdentitiesJsonformsService } from './identities.jsonforms.service';
3+
import { IdentitiesJsonFormsController } from './identities.jsonforms.controller';
4+
5+
@Module({
6+
controllers: [IdentitiesJsonFormsController],
7+
providers: [IdentitiesJsonformsService],
8+
exports: [IdentitiesJsonformsService],
9+
})
10+
export class IdentitiesJsonformsModule {}

0 commit comments

Comments
 (0)