Source code for terminatorlib.plugins.testplugin

import terminatorlib.plugin as plugin

# AVAILABLE must contain a list of all the classes that you want exposed
AVAILABLE = ['TestPlugin']

[docs]class TestPlugin(plugin.Plugin): capabilities = ['test']
[docs] def do_test(self): return('TestPluginWin')