Add the !lurk command
This commit is contained in:
parent
af25350b94
commit
aec1d42e8a
5
bot.py
5
bot.py
|
|
@ -126,6 +126,11 @@ def cmd_ohai(match: Match[str]) -> Response:
|
||||||
return MessageResponse(match, 'ohai, {user}!')
|
return MessageResponse(match, 'ohai, {user}!')
|
||||||
|
|
||||||
|
|
||||||
|
@handle_message('!lurk')
|
||||||
|
def cmd_lurk(match: Match[str]) -> Response:
|
||||||
|
return MessageResponse(match, 'thanks for lurking, {user}!')
|
||||||
|
|
||||||
|
|
||||||
@handle_message('!discord')
|
@handle_message('!discord')
|
||||||
def cmd_discord(match: Match[str]) -> Response:
|
def cmd_discord(match: Match[str]) -> Response:
|
||||||
return MessageResponse(
|
return MessageResponse(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue