pinhook/pinhook/plugin.py

27 lines
455 B
Python

cmds = []
class Output:
def __init__(self, msg_type, msg):
self.msg_type = msg_type
self.msg = msg
def action(msg):
return Output('action', msg)
def message(msg):
return Output('message', msg)
def add_plugin(command, func):
cmds.append({'cmd': command, 'func': func})
def register(command):
def register_for_command(func):
add_plugin(command, func)
return func
return register_for_command