mirror of
https://github.com/opensim/opensim.git
synced 2026-06-05 18:55:36 +08:00
* Added a 'param' param to the RestMethod * Added RestHandlerEntry to store more info about the 'rest' handler
9 lines
190 B
C#
9 lines
190 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Servers
|
|
{
|
|
public delegate string RestMethod( string request, string path, string param );
|
|
}
|