diff options
Diffstat (limited to 'Common/OpenSim.Servers/IRestHandler.cs')
-rw-r--r-- | Common/OpenSim.Servers/IRestHandler.cs | 8 |
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Servers | ||
6 | { | ||
7 | public delegate string RestMethod( string request, string path, string param ); | ||
8 | } | ||