mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
9 lines
312 B
Python
9 lines
312 B
Python
from felicity.apps.abstract.events import init_entity_tracker_events
|
|
from felicity.apps.auditlog.events import init_auditlog_listener_events
|
|
from felicity.apps.user.events import init_user_events
|
|
|
|
|
|
def observe_events():
|
|
init_user_events()
|
|
init_auditlog_listener_events()
|
|
init_entity_tracker_events()
|