ocarina/src/core/example.py

25 lines
386 B
Python

# This is a simple test plugin, to make sure everything is working
__author__="bjschuma"
__date__ ="$Dec 7, 2009 9:12:00 AM$"
__name__="test"
__type__="core"
__opt__=[]
from bt.message import write
# Called every time the plugin is enabled
def open():
write("Example plugin has been started",True)
def close():
write("Example plugin has been stopped")
pass
def run():
pass