Added events system
This commit is contained in:
18
utils/__init__.py
Normal file
18
utils/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
Utils package for DocuPulse.
|
||||
Contains utility functions for various features including event logging.
|
||||
"""
|
||||
|
||||
from .permissions import user_has_permission
|
||||
from .helpers import clean_path, timeago
|
||||
from .event_logger import log_event, get_user_events, get_room_events, get_recent_events
|
||||
|
||||
__all__ = [
|
||||
'user_has_permission',
|
||||
'clean_path',
|
||||
'timeago',
|
||||
'log_event',
|
||||
'get_user_events',
|
||||
'get_room_events',
|
||||
'get_recent_events'
|
||||
]
|
||||
Reference in New Issue
Block a user