summaryrefslogtreecommitdiff
path: root/__init__.py
blob: dfdd8b7ed8b88ac741fa7fd6061ddcabcfaf2398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Xiaomi MiMo web search plugin.

Mirrors the ``plugins/web/brave_free/`` layout: ``provider.py`` holds the
provider class, ``__init__.py::register(ctx)`` registers an instance.
"""

from __future__ import annotations

from .provider import MiMoWebSearchProvider


def register(ctx) -> None:
    """Register the MiMo Web Search provider with the plugin context."""
    ctx.register_web_search_provider(MiMoWebSearchProvider())