Files
wehub-resource-sync 41b710f9c7
CI / Frontend checks (push) Failing after 0s
CI / Backend tests (push) Failing after 1s
I18n Documentation Sync / sync-docs (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:28:40 +08:00

11 lines
221 B
Python

"""
Business logic services layer.
Separates business logic from API controllers and data access.
"""
from .base import BaseService
from .exceptions import ServiceError
__all__ = [
"BaseService",
"ServiceError"
]