Reorganize algorithm packages by business responsibility, move orchestration into services, and keep database access behind pooled repositories. Harden analysis API validation, remove unsafe legacy simulation endpoints, and add regression and architecture boundary coverage. BREAKING CHANGE: legacy algorithm module paths and obsolete simulation endpoints are removed.
14 lines
452 B
Python
14 lines
452 B
Python
"""
|
|
This module is reserved for general utility functions and helpers.
|
|
|
|
Currently, specific utilities are often implemented within their respective service modules
|
|
(e.g., time handling in `app.domain.time`) or core modules.
|
|
|
|
Future expansion may include:
|
|
- Date and time manipulation helpers
|
|
- String and text processing utilities
|
|
- File I/O and path management tools
|
|
- Mathematical and unit conversion functions
|
|
- Network and IP address utilities
|
|
"""
|