Send a message when the command /start is issued.
(update: Update, context: ContextTypes.DEFAULT_TYPE)
| 36 | # Define a few command handlers. These usually take the two arguments update and |
| 37 | # context. |
| 38 | async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
| 39 | """Send a message when the command /start is issued.""" |
| 40 | await update.message.reply_text("Hi!") |
| 41 | |
| 42 | |
| 43 | async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…