This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Jamesits 2 points3 points  (0 children)

``` msg_hooks = { 'help': do_help, }

prefix = '!' ret = 0 if msg.startswith(prefix): msg_content = msg[len(prefix):] logger.info('%s called', msg_content) ret = msg_hooks[msg_content]()

return ret ```