terminator/terminatorlib/plugins/testplugin.py

13 lines
281 B
Python

#!/usr/bin/env python2
import terminatorlib.plugin as plugin
# AVAILABLE must contain a list of all the classes that you want exposed
AVAILABLE = ['TestPlugin']
class TestPlugin(plugin.Plugin):
capabilities = ['test']
def do_test(self):
return('TestPluginWin')