aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Servers/IRestHandler.cs
blob: f269600ca6aab0b19a97daae39c4e831fc323f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.CAPS
{
    public interface IRestHandler
    {
        string HandleREST(string requestBody, string requestURL, string requestMethod);
    }
}