beremiz
Clone
Summary
Browse
Changes
Graph
Inverting order of plugin calls in retrieve and publish
2012-02-21, laurent
fb55fbee202c
Inverting order of plugin calls in retrieve and publish
from pyjs.jsonrpc import JSONRPCServiceBase
class JSONRPCService(JSONRPCServiceBase):
def serve(self):
return self.process(request.body.read())
def __call__(self,func):
self.methods[func.__name__]=func
return func