show how to call methods on plugins

This commit is contained in:
2021-11-13 18:32:28 +01:00
parent c8e5374aa7
commit 1ea10e2933
4 changed files with 25 additions and 8 deletions

View File

@@ -5,3 +5,6 @@ class LogFileViewerPlugin(PluginBase):
def __init__(self):
super(LogFileViewerPlugin, self).__init__()
print("init LogFileViewerPlugin")
def say_hello(self, *args):
print("LogFileViewerPlugin says hello")