svgui/pyjs/jsonrpc/web2py/jsonrpc.py
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Fri, 22 Sep 2017 18:06:15 +0300
changeset 1829 a776ac02b079
parent 1748 ba5f64fe0e00
child 1869 49cdd843c006
permissions -rw-r--r--
remove reimported modules
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