Files
xian_algorithm_new/app/services/__init__.py
T

7 lines
190 B
Python
Raw Normal View History

2026-05-05 19:49:12 +08:00
"""
Business logic services package
"""
2026-05-12 16:20:02 +08:00
from app.services.rainfall_grid_service import rainfall_grid_service, RainfallGridService
__all__ = ['rainfall_grid_service', 'RainfallGridService']