Initial release.
[vpproxy.git] / plugins / modules / PluginInterface.py
1 '''
2 Plugin interface.
3 Interhit your plugins from this class.
4
5 Your plugin name should end with _plugin.py, e.g. example_plugin.py
6 Your class name should match plugin name and be capitalized, e.g. Example
7 Do not use dots in filename or class name.
8
9 See helloworld_plugin_.py for the basic plugin example.
10 '''
11
12
13 class VPProxyPlugin(object):
14
15     def __init__(self, AceConfig, AceStuff):
16         pass
17
18     def handle(self, connection):
19         raise NotImplementedError