ssg_today_menu_slack/slack.py

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
}
}