IRestHandler.cs 176 B

12345678
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.Servers
  5. {
  6. public delegate string RestMethod( string request, string path );
  7. }