fix: Add content to plugins/__init__.py to properly expose base_plugin

This commit is contained in:
LemonNexus 2026-02-15 16:07:17 +00:00
parent 7a3aa9b7f1
commit 71a205bc18
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
"""
Plugins package for EU-Utility.
This package contains both built-in and user-installed plugins.
The base_plugin module provides the BasePlugin class that all plugins must inherit from.
"""
# Import base_plugin to make it available as plugins.base_plugin
try:
from plugins import base_plugin
except ImportError:
pass
__all__ = ['base_plugin']