summaryrefslogtreecommitdiff
path: root/__init__.py
blob: c1cd62dcb43b8532ff2703ca1a0e7c970bfade26 (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 plugins.web.mimo.provider import MiMoWebSearchProvider


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