24 lines
759 B
Python
24 lines
759 B
Python
"""Admin-facing DB facade.
|
|
|
|
Current admin queries mostly live in auth_db; this module groups strategy-admin reads
|
|
that are consumed by web/admin surfaces and keeps callers off the giant altcoin_db module.
|
|
"""
|
|
|
|
from app.db.review_queries import (
|
|
backfill_strategy_failure_patterns,
|
|
generate_candidates_from_review_history,
|
|
get_strategy_failure_patterns,
|
|
get_strategy_rule_candidates,
|
|
refresh_strategy_candidate_performance,
|
|
dry_run_strategy_candidate_performance,
|
|
)
|
|
|
|
__all__ = [
|
|
"backfill_strategy_failure_patterns",
|
|
"dry_run_strategy_candidate_performance",
|
|
"generate_candidates_from_review_history",
|
|
"get_strategy_failure_patterns",
|
|
"get_strategy_rule_candidates",
|
|
"refresh_strategy_candidate_performance",
|
|
]
|