First successful plugin setup

This commit is contained in:
2026-05-23 10:08:40 -04:00
commit 9548dc5555
6 changed files with 46 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
Name = "Example Plugin"
Version = "1.0"
Authors = ["Prodigical"]
Description = "Minimal plugin used to validate plugin loading in this container."
+10
View File
@@ -0,0 +1,10 @@
from pynicotine.pluginsystem import BasePlugin
class Plugin(BasePlugin):
name = "Example Plugin"
description = "A minimal Nicotine+ plugin example. Logs when connected."
version = "1.0"
def loaded_notification(self):
self.log("Example Plugin loaded.")
Binary file not shown.