aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Servers/IRestHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Servers/IRestHandler.cs')
-rw-r--r--Servers/IRestHandler.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Servers/IRestHandler.cs b/Servers/IRestHandler.cs
new file mode 100644
index 0000000..f269600
--- /dev/null
+++ b/Servers/IRestHandler.cs
@@ -0,0 +1,11 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.CAPS
6{
7 public interface IRestHandler
8 {
9 string HandleREST(string requestBody, string requestURL, string requestMethod);
10 }
11}