beremiz
Clone
Summary
Browse
Changes
Graph
fix issue that was impossible to remove local instance of functional
2016-05-06, Andrey Skvortsov
7272baadd7f6
fix issue that was impossible to remove local instance of functional
block if pou is written in ST or IL
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