diff options
Diffstat (limited to '__init__.py')
| -rw-r--r-- | __init__.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..c1cd62d --- /dev/null +++ b/__init__.py @@ -0,0 +1,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()) |
