aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Servers/IRestHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Common/OpenSim.Servers/IRestHandler.cs')
-rw-r--r--Common/OpenSim.Servers/IRestHandler.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Common/OpenSim.Servers/IRestHandler.cs b/Common/OpenSim.Servers/IRestHandler.cs
new file mode 100644
index 0000000..c322505
--- /dev/null
+++ b/Common/OpenSim.Servers/IRestHandler.cs
@@ -0,0 +1,8 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Servers
6{
7 public delegate string RestMethod( string request, string path, string param );
8}