add stubs for pluggable implementations

This commit is contained in:
2016-08-20 11:56:48 +01:00
parent 27fb51e6e1
commit 01e0af6fcb
4 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import os
import glob
import abc
modules = glob.glob(os.path.dirname(__file__) + '/*.py')
__all__ = [os.path.basename(f)[:-3] for f in modules]
class ibuddy:
__metaclass__ = abc.ABCMeta
@abc.abstractmethod
def test(self):
return