terminator/terminatorlib/plugins/testplugin.py

12 lines
234 B
Python
Raw Normal View History

2009-12-17 12:54:47 +00:00
import plugin
# available must contain a list of all the classes that you want exposed
available = ['TestPlugin']
2009-12-17 12:54:47 +00:00
class TestPlugin(plugin.Plugin):
capabilities = ['test']
def do_test(self):
return('TestPluginWin')