Wide variety of changes for release

This commit is contained in:
2023-12-27 01:16:58 +01:00
parent c63e4badf4
commit 7ea619c596
46 changed files with 484 additions and 63 deletions

View File

@@ -31,5 +31,5 @@ public abstract class Controller<Q, R> implements Route {
return new Gson().toJson(handle(req, response));
}
public abstract R handle(Q request, Response response) throws Exception;
public abstract R handle(Q request, Response response);
}