added service class
This commit is contained in:
parent
278314bdc0
commit
aca8d7ef69
1 changed files with 17 additions and 0 deletions
17
lib/service/service.py
Normal file
17
lib/service/service.py
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
class Service:
|
||||||
|
def __init__(self, args):
|
||||||
|
self.args = args
|
||||||
|
pass
|
||||||
|
|
||||||
|
def execute(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def pre_execute(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def parse_result(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def handle_result(self):
|
||||||
|
pass
|
||||||
Loading…
Add table
Add a link
Reference in a new issue