svgui/pyjs/jsonrpc/web2py/jsonrpc.py
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Tue, 15 Aug 2017 16:48:49 +0300
changeset 1742 92932cd370a4
parent 1740 b789b695b5c6
child 1748 ba5f64fe0e00
permissions -rw-r--r--
clean-up: fix PEP8 E225 missing whitespace around operator
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