using System.ServiceModel;
namespace TGS.Interface.Components
{
///
/// Used by DreamDaemon to access the interop API with call()(). Restrictions are in place so that only a DreamDaemon instance launched by the service can use this API
///
[ServiceContract]
public interface ITGInterop
{
///
/// Called from /world/ExportService(command)
///
/// The command to run
/// on success, on failure
[OperationContract]
bool InteropMessage(string command);
}
}