Add !github command
This commit is contained in:
parent
c4884d79da
commit
f698ae9ecd
9
bot.py
9
bot.py
|
|
@ -172,6 +172,15 @@ def keyboard(match: Match[str]) -> Response:
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@handle_message('!github')
|
||||||
|
def github(match: Match[str]) -> Response:
|
||||||
|
return MessageResponse(
|
||||||
|
match,
|
||||||
|
"anthony's github is https://github.com/asottile -- stream github is "
|
||||||
|
"https://github.com/anthonywritescode",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@handle_message('!still')
|
@handle_message('!still')
|
||||||
def cmd_still(match: Match[str]) -> Response:
|
def cmd_still(match: Match[str]) -> Response:
|
||||||
_, _, msg = match.groups()
|
_, _, msg = match.groups()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue