()
| 44 | @app.route("/", methods=["GET", "POST"]) |
| 45 | @app.route("/home", methods=["GET", "POST"]) |
| 46 | async def index(): |
| 47 | await asyncio.sleep(0) |
| 48 | return request.method |
| 49 | |
| 50 | @app.errorhandler(AppError) |
| 51 | async def handle(_): |
nothing calls this directly
no outgoing calls
no test coverage detected