Creates all (?) endpoints

This commit is contained in:
Guillaume Tâche
2025-04-21 22:10:24 +02:00
commit 8a05f63687
263 changed files with 4821 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package ch.gtache.elderscrollslegends.service.dailyrewards;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.HeaderParam;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
@Path("/dailyrewards")
public class DailyRewardsEndpoints {
@Path("list")
@GET
@Produces("application/json")
public ListRewardsResponse list(@HeaderParam("Authorization") final String authentication) {
return null;
}
@Path("acceptReward")
@POST
@Produces("application/json")
public AcceptRewardResponse acceptReward(@HeaderParam("Authorization") final String authentication) {
return null;
}
}