rename: GameResource → GameController (more conventional name for REST handler)
Build & Deploy / build-and-deploy (push) Successful in 40s

This commit is contained in:
David Alvarez
2026-06-09 14:13:13 +02:00
parent 9afbac32f1
commit 30927c4159
2 changed files with 2 additions and 2 deletions
@@ -19,7 +19,7 @@ import java.util.*;
@Path("/api/games") @Path("/api/games")
@Produces(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON)
public class GameResource { public class GameController {
@Inject @Inject
GameService svc; GameService svc;
+1 -1
View File
@@ -7,7 +7,7 @@ import java.util.List;
/** /**
* Contract for game metadata persistence. * Contract for game metadata persistence.
* Decouples consumers (IgdbService, GameResource) from the concrete storage implementation. * Decouples consumers (IgdbService, GameController) from the concrete storage implementation.
*/ */
public interface GameStore { public interface GameStore {
Game load(String id) throws IOException, NoSuchFileException; Game load(String id) throws IOException, NoSuchFileException;