Add plugin architecture

This commit is contained in:
Kivi Kaitaniemi
2025-12-13 01:44:41 +02:00
parent 6047cad690
commit aaa4a0ad43
14 changed files with 526 additions and 20 deletions
+10
View File
@@ -0,0 +1,10 @@
import os
import decman
class Example(decman.Plugin):
NAME = "example"
def available(self) -> bool:
return os.path.exists("/tmp/example_plugin_available")