terminator/terminatorlib/plugins/testplugin.py
2020-04-05 16:36:06 +02:00

12 lines
258 B
Python

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')