"""Platform-Registry — neue Plattformen hier eintragen."""
from __future__ import annotations

from . import (
    anthropic_docs,
    bluesky,
    github,
    github_trending,
    hackernews,
    huggingface,
    mastodon,
    mcp_so,
)

PLATFORMS = {
    "github": github.fetch,
    "github_trending": github_trending.fetch,
    "hackernews": hackernews.fetch,
    "anthropic_docs": anthropic_docs.fetch,
    "huggingface": huggingface.fetch,
    "bluesky": bluesky.fetch,
    "mastodon": mastodon.fetch,
    "mcp_so": mcp_so.fetch,
}
