Ajout endpoints défis

This commit is contained in:
2024-12-07 19:29:38 +01:00
parent faae6b0b93
commit 572a04130f
20 changed files with 429 additions and 8 deletions

View File

@@ -4,9 +4,11 @@ import { PrismaModule } from './prisma/prisma.module'
import { UsersModule } from './users/users.module'
import { AuthModule } from './auth/auth.module'
import { GeolocationsModule } from './geolocations/geolocations.module'
import { ChallengesModule } from './challenges/challenges.module'
import { ChallengeActionsModule } from './challenge-actions/challenge-actions.module'
@Module({
imports: [PrismaModule, UsersModule, AuthModule, GeolocationsModule],
imports: [PrismaModule, UsersModule, AuthModule, GeolocationsModule, ChallengesModule, ChallengeActionsModule],
providers: [PrismaService],
})
export class AppModule {}