aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/core/plugin/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/autogpt/core/plugin/__init__.py')
-rw-r--r--autogpts/autogpt/autogpt/core/plugin/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/autogpts/autogpt/autogpt/core/plugin/__init__.py b/autogpts/autogpt/autogpt/core/plugin/__init__.py
new file mode 100644
index 000000000..b850114b3
--- /dev/null
+++ b/autogpts/autogpt/autogpt/core/plugin/__init__.py
@@ -0,0 +1,6 @@
+"""The plugin system allows the Agent to be extended with new functionality."""
+from autogpt.core.plugin.base import PluginService
+
+__all__ = [
+ "PluginService",
+]