"""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())