new api service and logic implemented
This commit is contained in:
21
Events/Engine/__init__.py
Normal file
21
Events/Engine/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""ApiEvents package initialization.
|
||||
|
||||
This module serves as the main entry point for the ApiEvents package,
|
||||
making common utilities and base classes available for all API services.
|
||||
"""
|
||||
|
||||
from .abstract_class import (
|
||||
MethodToEvent,
|
||||
PageInfo,
|
||||
ClusterToMethod,
|
||||
Event,
|
||||
)
|
||||
# from .base_request_model import BaseRequestModel, DictRequestModel
|
||||
|
||||
# Re-export commonly used classes
|
||||
__all__ = [
|
||||
"MethodToEvent",
|
||||
"PageInfo",
|
||||
"ClusterToMethod",
|
||||
"Event",
|
||||
]
|
||||
Reference in New Issue
Block a user