Source code for harp.controllers.typing

from typing import Protocol

from harp.http import HttpRequest


[docs] class ControllerResolver(Protocol):
[docs] async def resolve(self, request: HttpRequest): ...