diff --git a/lib/service/service.py b/lib/service/service.py new file mode 100644 index 0000000..740d930 --- /dev/null +++ b/lib/service/service.py @@ -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 \ No newline at end of file