Update use of new command handling system

This commit is contained in:
Tulir Asokan 2018-12-25 00:36:34 +02:00
parent 4c7bc0bf7d
commit 758849d4bd

View file

@ -26,6 +26,6 @@ class EchoBot(Plugin):
await evt.reply(f"Pong! (ping took {self.time_since(evt.timestamp)} to arrive)")
@command.new("echo", help="Repeat a message")
@command.argument("message", required=True)
@command.argument("message", pass_raw=True)
async def echo_handler(self, evt: MessageEvent, message: str) -> None:
await evt.respond(message)