* Started working on LlsdMethod for BaseHttpServer

*Renamed IRestHandler.cs to RestMethod.cs which is the correct name.
This commit is contained in:
lbsa71
2007-07-02 16:03:58 +00:00
parent c25a2fea59
commit fcabdab7bc
7 changed files with 113 additions and 83 deletions

View File

@@ -0,0 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework.Servers
{
public delegate string LlsdMethod(string request, string path, string param);
}