11 lines
280 B
Python
11 lines
280 B
Python
from raven.pluginbase import PluginBase
|
|
|
|
|
|
class LogFileViewerPlugin(PluginBase):
|
|
def __init__(self):
|
|
super(LogFileViewerPlugin, self).__init__()
|
|
print("init LogFileViewerPlugin")
|
|
|
|
def say_hello(self, *args):
|
|
print("LogFileViewerPlugin says hello")
|