feat: Create api routes for lootboxes (CAS-43) #110

Merged
ptran merged 7 commits from feat/lootboxes into main 2025-04-02 09:18:55 +00:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit 084d478cd9 - Show all commits

View file

@ -0,0 +1,9 @@
package de.szut.casino.lootboxes;
import de.szut.casino.blackjack.BlackJackGameEntity;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Service;
@Service
public interface LootBoxRepository extends JpaRepository<LootBoxEntity, Long> {
}

View file

@ -0,0 +1,8 @@
package de.szut.casino.lootboxes;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Service;
@Service
public interface RewardRepository extends JpaRepository<RewardEntity, Long> {
}