trash wsdl
[sfa.git] / wsdl / apistub.py
diff --git a/wsdl/apistub.py b/wsdl/apistub.py
deleted file mode 100644 (file)
index 198883f..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-import sfa.methods
-
-
-methods = sfa.methods.all
-
-def callable(method):
-    classname = method.split(".")[-1]
-    module = __import__("sfa.methods." + method, globals(), locals(), [classname])
-    callablemethod = getattr(module, classname)(None)
-    return getattr(module, classname)(None)
-
-