111 return |
111 return |
112 |
112 |
113 method = clientDict["method"] |
113 method = clientDict["method"] |
114 params = clientDict["params"] |
114 params = clientDict["params"] |
115 |
115 |
116 # TODO: remove these once done |
|
117 print("Method:", method) |
|
118 print("Params:", params) |
|
119 |
|
120 self.handleCall(method, params) |
116 self.handleCall(method, params) |
121 |
117 |
122 def handleCall(self, method, params): |
118 def handleCall(self, method, params): |
123 """ |
119 """ |
124 Public method to handle a method call from the client. |
120 Public method to handle a method call from the client. |