"""FastAPI dependency injection.""" from ashare_dp.storage.database import get_db from ashare_dp.storage.repository import KLineRepository def get_repo() -> KLineRepository: """Get the K-line repository instance.""" return KLineRepository()