Initial LinkLog implementation

This commit is contained in:
Olaf
2026-08-24 14:30:30 +02:00
commit 1c827956c4
50 changed files with 3436 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
class BasePlugin:
name = 'base'
version = '1.0.0'
enabled = True
def initialize(self, config=None):
return True
def validate_config(self, config):
return True, 'ok'
def handle_event(self, event):
raise NotImplementedError
def health_check(self):
return {'name': self.name, 'status': 'ok'}