Skip to content

Commit

Permalink
fix: lotteryEventRepository 추가
Browse files Browse the repository at this point in the history
k000927 authored Aug 23, 2024
1 parent 3a0867b commit d7edf4f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@
import JGS.CasperEvent.domain.event.entity.event.LotteryEvent;
import JGS.CasperEvent.domain.event.entity.participants.LotteryParticipants;
import JGS.CasperEvent.domain.event.repository.CasperBotRepository;
import JGS.CasperEvent.domain.event.repository.eventRepository.LotteryEventRepository;
import JGS.CasperEvent.domain.event.repository.participantsRepository.LotteryParticipantsRepository;
import JGS.CasperEvent.domain.event.service.redisService.LotteryEventRedisService;
import JGS.CasperEvent.global.entity.BaseUser;
@@ -40,6 +41,7 @@ public class LotteryEventService {
private final LotteryEventRedisService lotteryEventRedisService;
private final SecretKey secretKey;
private final EventCacheService eventCacheService;
private final LotteryEventRepository lotteryEventRepository;

public CasperBotResponseDto postCasperBot(BaseUser user, CasperBotRequestDto casperBotRequestDto) throws CustomException, NoSuchPaddingException, IllegalBlockSizeException, NoSuchAlgorithmException, BadPaddingException, InvalidKeyException {
LotteryEvent lotteryEvent = eventCacheService.getLotteryEvent();

0 comments on commit d7edf4f

Please sign in to comment.