Skip to content

0.1.3.5 (2023-06-16)

Compare
Choose a tag to compare
@Lancetnik Lancetnik released this 16 Jun 11:41
· 133 commits to main since this release

What's Changed

Now you can use pydantic.Field to describe your arguments in AsyncAPI spec

from pydantic import Field

@broker.handle(...)
async def handler(
    user_id: str = Field(title="DBUserId", description="UserId at main Postgres")
): ...

Full Changelog: 0.1.3.0...0.1.3.5