clean up
[unfold.git] / engine / manifoldapi.py
index b900855..c8c3e66 100644 (file)
@@ -28,3 +28,14 @@ class ManifoldAPI:
         if debug: print methodName, self.auth, self.url,'->',result
         return result
       return func
+
+  # 4amine : xxx
+  def send_manifold_query (self, manifold_query):
+    (action,method)= (manifold_query.action,manifold_query.method)
+    if action=='get':
+      return self.proxy.Get(self.auth, method, manifold_query.filters, {}, manifold_query.fields)
+    # xxx...
+    elif action=='others':
+      return None
+
+