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

feat: create repositories
All checks were successful
CI / Get Changed Files (pull_request) Successful in 7s
CI / eslint (pull_request) Has been skipped
CI / prettier (pull_request) Has been skipped
CI / test-build (pull_request) Has been skipped
CI / Checkstyle Main (pull_request) Successful in 1m28s

Phan Huy Tran 2025-04-02 09:18:17 +02:00

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> {
}