Need to have possibility to validate headers. At a glance: ```python async def handle(locale: Header[str]): pass ``` Also, we can specify defaults: ```python async def handle(locale: Header[str] = "ru"): pass ```
Need to have possibility to validate headers.
At a glance:
Also, we can specify defaults: