cleanup and rename provider to plugin

This commit is contained in:
2026-05-21 16:19:17 -07:00
parent 02d84f423e
commit e8913d1344
62 changed files with 553 additions and 165 deletions
+2 -2
View File
@@ -29,13 +29,13 @@ drop-in plugin search paths are:
Plugin rules:
- A plugin can be a single `.py` file or a package directory with `__init__.py`.
- Current plugin classes inherit from `ProviderCore.base.Provider`.
- Current plugin classes inherit from `PluginCore.base.Provider`.
- Give the plugin a stable name using `PLUGIN_NAME` or the class name.
Example skeleton:
```python
from ProviderCore.base import Provider, SearchResult
from PluginCore.base import Provider, SearchResult
class MyPlugin(Provider):