summaryrefslogtreecommitdiff
path: root/service/api.ice
diff options
context:
space:
mode:
Diffstat (limited to 'service/api.ice')
-rw-r--r--service/api.ice19
1 files changed, 19 insertions, 0 deletions
diff --git a/service/api.ice b/service/api.ice
new file mode 100644
index 0000000..c207c3d
--- /dev/null
+++ b/service/api.ice
@@ -0,0 +1,19 @@
+#ifndef MIRRORSEARCH_API
+#define MIRRORSEARCH_API
+
+#include <models.ice>
+
+module MirrorSearch {
+ exception XmlError {
+ string msg;
+ };
+
+ interface Search {
+ idempotent SearchServices getServices();
+ idempotent SearchHits getMatches(string filename);
+ idempotent optional(0) string feelingLucky(string filename);
+ };
+};
+
+#endif
+