node -> python 변경 진행중

This commit is contained in:
bumpsoo 2024-07-01 02:13:51 +09:00
commit 660f85f145
5 changed files with 285 additions and 0 deletions

10
slack.py Normal file
View file

@ -0,0 +1,10 @@
from typing import Any, Dict
def markdown(text: str) -> Dict[str, Any]:
return {
'type': 'section',
'text': {
'type': 'mrkdwn',
'text': text
}
}