Files
dev/plugins/test.py
2018-01-19 10:56:53 +01:00

12 lines
250 B
Python
Executable File

class test(Plugin):
def __init__(self):
print "Constructor"
def onStart(self):
print "Start - state = " + str(self.context.state)
def onStop(self):
print "Stop - state = " + str(self.context.state)