mirror of
https://github.com/opensim/opensim.git
synced 2026-05-25 03:05:41 +08:00
13 lines
270 B
C#
13 lines
270 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IHttpRequests
|
|
{
|
|
LLUUID MakeHttpRequest(string url, string type, string body);
|
|
}
|
|
}
|