10 lines
202 B
Python
10 lines
202 B
Python
from typing import Any, Dict
|
|
|
|
def markdown(text: str) -> Dict[str, Any]:
|
|
return {
|
|
'type': 'section',
|
|
'text': {
|
|
'type': 'mrkdwn',
|
|
'text': text
|
|
}
|
|
}
|