You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iTi-System/iti_system/events/__init__.py

18 lines
351 B
Python

from .names import MenuEvents, RoleEvents, RoleRelEvents, UserEvents, UserRelEvents
def init_event_handlers(app):
from .user_cache_event_handler import UserCacheEventHandler
UserCacheEventHandler(app)
__all__ = [
"MenuEvents",
"RoleEvents",
"RoleRelEvents",
"UserEvents",
"UserRelEvents",
"init_event_handlers",
]