0.1.3.5 (2023-06-16)
What's Changed
- Use
amq.rabbitmq.reply-to
to implement RPC by @Lancetnik in #72 - Use pydantic.Field title and description in AsyncAPI scheme by @Lancetnik in #73
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