10 lines
227 B
Python
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",
|
|
}
|
|
]
|