8 lines
199 B
Python
8 lines
199 B
Python
from raven.pluginbase import PluginBase
|
|
|
|
|
|
class LogFileViewerPlugin(PluginBase):
|
|
def __init__(self):
|
|
super(LogFileViewerPlugin, self).__init__()
|
|
print("init LogFileViewerPlugin")
|