Files
opensim/Servers/IRestHandler.cs
MW d14a24d5ca Started to add a few features to the web front end that should be useful during debugging.
First such feature is that you can see a list of any connected clients inventory.
2007-03-30 10:14:15 +00:00

9 lines
176 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Servers
{
public delegate string RestMethod( string request, string path );
}