8 lines
359 B
Python
Executable file
8 lines
359 B
Python
Executable file
"""Compatibility module for lilith_ml_service_base -> lilith_fastapi_service_base.
|
|
|
|
This module provides backward compatibility during the package rename transition.
|
|
All imports are aliased to the new lilith_fastapi_service_base package.
|
|
"""
|
|
|
|
# Re-export everything from the new package name
|
|
from lilith_service_fastapi_bootstrap import * # noqa: F401, F403
|