feat(app): add PersonsModule to application modules

This commit is contained in:
Mathis HERRIOT 2025-05-16 23:53:00 +02:00
parent e4375462a3
commit a1abde36e6
No known key found for this signature in database
GPG Key ID: E7EB4A211D8D4907

View File

@ -11,6 +11,7 @@ import { GroupsModule } from './modules/groups/groups.module';
import { TagsModule } from './modules/tags/tags.module';
import { WebSocketsModule } from './modules/websockets/websockets.module';
import { JwtAuthGuard } from './modules/auth/guards/jwt-auth.guard';
import { PersonsModule } from './modules/persons/persons.module';
@Module({
imports: [
@ -25,6 +26,7 @@ import { JwtAuthGuard } from './modules/auth/guards/jwt-auth.guard';
GroupsModule,
TagsModule,
WebSocketsModule,
PersonsModule,
],
controllers: [AppController],
providers: [