async def extra_args_controller(name: str, **kwargs: Any) -> Response: return text(hello(kwargs['extra']), name=name)
async def post_execution_middleware_controller(name: str) -> Response: return text(body=hello(name))
async def background_tasks_controller(name: str) -> Response: return text( f'Hello {name}!\n{name} are the #{HelloCounter.counter}!', background_tasks=HelloCounter.count, )
async def plaintext(): return text('Hello, world!')