rename IExporter serve -> start
This commit is contained in:
parent
68b400d096
commit
88abf182bd
1 changed files with 4 additions and 1 deletions
|
|
@ -23,5 +23,8 @@ class IExporter(object):
|
|||
# to be overriden by concrete implementation
|
||||
raise NotImplemented()
|
||||
|
||||
def serve(self):
|
||||
def start(self):
|
||||
raise NotImplemented()
|
||||
|
||||
def stop(self):
|
||||
raise NotImplemented()
|
||||
|
|
|
|||
Loading…
Reference in a new issue