Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
Adds HUNT (Sniper/Trend/Forge), CFO dashboard (burn rate + kill list), and a plugin-based Analyze side panel with caching and SSRF hardening.
22 lines
681 B
Python
22 lines
681 B
Python
"""Analyzer registry (Alpha Terminal - Diligence)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from app.services.analyze.analyzers.domain_facts import DomainFactsAnalyzer
|
|
from app.services.analyze.analyzers.radio_test import RadioTestAnalyzer
|
|
from app.services.analyze.analyzers.tld_matrix import TldMatrixAnalyzer
|
|
from app.services.analyze.analyzers.tld_pricing import TldPricingAnalyzer
|
|
from app.services.analyze.analyzers.basic_risk import BasicRiskAnalyzer
|
|
|
|
|
|
def get_default_analyzers():
|
|
# Order matters (UX)
|
|
return [
|
|
DomainFactsAnalyzer(),
|
|
RadioTestAnalyzer(),
|
|
TldMatrixAnalyzer(),
|
|
TldPricingAnalyzer(),
|
|
BasicRiskAnalyzer(),
|
|
]
|
|
|