CustomIWMServer/customiwmserver/hooks/webhook.py
magmaus3 e66ed05ef7
Hook system improvements
+ Allow assigning multiple hook types to a class.
+ Add hook types, that are executed (almost) on every occasion.
2022-11-20 16:22:35 +01:00

19 lines
416 B
Python

#
# Example module.
#
from .. import hook_system
hook = hook_system.hook
@hook.add_hook
class Login:
# Different hook types are executed at different places.
# In this case, the hook is executed when a user logs in.
#
# Check the documentation for more hook types.
hook_type = ["player_login"]
def __call__(self, hook_type, *args, **kwargs):
print("LOGIN HOOK:", args, kwargs)