From c8a17ee264a269a59651936b34a960f4d40a9074 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Sun, 19 Jul 2009 18:32:04 +0530 Subject: JSON RPC Based new architecture and corresponding changes --- silpa/common/silpamodule.py | 4 ++++ 1 file changed, 4 insertions(+) mode change 100644 => 100755 silpa/common/silpamodule.py (limited to 'silpa/common/silpamodule.py') diff --git a/silpa/common/silpamodule.py b/silpa/common/silpamodule.py old mode 100644 new mode 100755 index 7c5a538..8ec1e00 --- a/silpa/common/silpamodule.py +++ b/silpa/common/silpamodule.py @@ -14,3 +14,7 @@ class SilpaModule: return "Module description" def process(self,object): return "Not Implemented" + +def ServiceMethod(fn): + fn.IsServiceMethod = True + return fn -- cgit