1
0
Fork 0
tuned/exports/interfaces.py
2011-11-10 15:52:55 +01:00

14 lines
278 B
Python

#
# Author: Jan Vcelak <jvcelak@redhat.com>
#
class IExportable(object):
pass
class IExporter(object):
def export(self, method, in_signature, out_signature):
# to be overriden by concrete implementation
raise NotImplemented()
def serve(self):
raise NotImplemented()