fix(db-hardening): Add lib __init__.py and improve MinIO import error handling

This commit is contained in:
Apple
2025-12-02 01:57:27 -08:00
parent 8e8f95e9ef
commit d24a23ec96
3 changed files with 80 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
"""
City Service Library
"""
from .assets_client import upload_asset, delete_asset, ensure_bucket
__all__ = ['upload_asset', 'delete_asset', 'ensure_bucket']