17 lines
No EOL
246 B
Python
17 lines
No EOL
246 B
Python
|
|
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 |