MCPcopy
hub / github.com/encode/starlette / handle

Method handle

starlette/routing.py:509–510  ·  starlette/routing.py::Host.handle
(self, scope: Scope, receive: Receive, send: Send)

Source from the content-addressed store, hash-verified

507 raise NoMatchFound(name, path_params)
508
509 async def handle(self, scope: Scope, receive: Receive, send: Send) -> None:
510 await self.app(scope, receive, send)
511
512 def __eq__(self, other: Any) -> bool:
513 return isinstance(other, Host) and self.host == other.host and self.app == other.app

Callers 1

appMethod · 0.45

Calls 1

appMethod · 0.45

Tested by

no test coverage detected