From aca8d7ef69335bd4d826a1f884647df740d5be9c Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Tue, 4 Jun 2013 23:13:18 +0200 Subject: [PATCH] added service class --- lib/service/service.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/service/service.py 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