This repository has been archived on 2024-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
PriceyBot3/libs/block_utils.py

10 lines
227 B
Python

async def image_block(url, title=""):
return [
{
"type": "image",
"title": {"type": "plain_text", "text": title},
"image_url": url,
"alt_text": "foo",
}
]