12 lines
240 B
C#
12 lines
240 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace OpenSim.CAPS
|
||
|
{
|
||
|
public interface IRestHandler
|
||
|
{
|
||
|
string HandleREST(string requestBody, string requestURL, string requestMethod);
|
||
|
}
|
||
|
}
|