Martin Novák

Results 2 issues of Martin Novák

Adds interface for retrieving Bank Accounts.

Validating response does not work for handlers in MethodView ``` from quart.views import MethodView class UserView(MethodView): methods = ["GET"] @validate_response(UserResponse) async def get(self): user = db.get_user() return user.model_dump() ``` This...