event_handler.py 335 B

1234567891011121314151617181920212223
  1. # @description:
  2. # @author: licanglong
  3. # @date: 2025/11/20 14:00
  4. from app.core import Event
  5. class ApplicationStartupEvent(Event):
  6. """
  7. 注册解析器事件
  8. """
  9. def __init__(self, **kwargs):
  10. super().__init__(**kwargs)
  11. class ConfigUpdateEvent(Event):
  12. """
  13. 配置文件更新事件
  14. """
  15. pass