From 71a205bc18f0cd1df80ab40598ff1d943eae46b0 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Sun, 15 Feb 2026 16:07:17 +0000 Subject: [PATCH] fix: Add content to plugins/__init__.py to properly expose base_plugin --- plugins/__init__.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/plugins/__init__.py b/plugins/__init__.py index e69de29..c071e76 100644 --- a/plugins/__init__.py +++ b/plugins/__init__.py @@ -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']