19 lines
389 B
Python
19 lines
389 B
Python
from .facade import AlertServiceMixin
|
|
from .http import AlertHttpMixin
|
|
from .repository import AlertRepositoryMixin
|
|
|
|
__all__ = [
|
|
"AlertHttpMixin",
|
|
"AlertRepositoryMixin",
|
|
"AlertService",
|
|
"AlertServiceMixin",
|
|
]
|
|
|
|
|
|
def __getattr__(name: str):
|
|
if name == "AlertService":
|
|
from .service import AlertService
|
|
|
|
return AlertService
|
|
raise AttributeError(name)
|