(assistant) Migrate to Jooby framework

This commit is contained in:
Viktor Lofgren 2025-02-15 13:28:12 +01:00
parent 9d302e2973
commit 44d6bc71b7

View File

@ -50,7 +50,7 @@ public class AssistantService extends JoobyService {
public void startJooby(Jooby jooby) { public void startJooby(Jooby jooby) {
super.startJooby(jooby); super.startJooby(jooby);
jooby.get("/suggest", this::getSuggestions); jooby.get("/suggest/", this::getSuggestions);
jooby.get("/screenshot/{id}", screenshotService::serveScreenshotRequest); jooby.get("/screenshot/{id}", screenshotService::serveScreenshotRequest);
} }