- Introduced a new scheduled task for executing automation rules every 5 minutes in the Celery beat schedule. - Updated URL routing to include a new endpoint for automation-related functionalities. - Refactored imports in various modules to align with the new business layer structure, ensuring backward compatibility for billing models, exceptions, and services.
5 lines
239 B
Python
5 lines
239 B
Python
# Backward compatibility aliases - exceptions moved to business/billing/
|
|
from igny8_core.business.billing.exceptions import InsufficientCreditsError, CreditCalculationError
|
|
|
|
__all__ = ['InsufficientCreditsError', 'CreditCalculationError']
|