File size: 197 Bytes
48ae4e0 |
1 2 3 4 5 6 7 8 9 |
"""Database module for crypto API monitoring"""
from database.db_manager import DatabaseManager
# For backward compatibility
Database = DatabaseManager
__all__ = ['DatabaseManager', 'Database']
|