models and archi

This commit is contained in:
Guillem George 2026-02-12 19:44:18 +01:00
parent 43bdb74698
commit 8dca2f10c6
36 changed files with 238 additions and 1 deletions

View file

@ -18,7 +18,7 @@ public class Endpoints {
if (name == null || name.isEmpty()) {
return Response.status(400).build();
}
HelloResponse response = new HelloResponse("Hello " + name);
HelloResponse response = new HelloResponse("hello " + name);
return Response.ok(response).build();
}