namespace Core.Helpers;
public class HttpServerHelper
{
public string GetMimeText(string key)
{
throw new NotImplementedException();
}
///
/// Combine ip and port into address
///
/// url
public string BuildUrl()
{
throw new NotImplementedException();
}
///
/// Prepend http to the url:port
///
/// URI
public string GetBackendUrl()
{
throw new NotImplementedException();
}
///
/// Get websocket url + port
///
public string GetWebsocketUrl()
{
throw new NotImplementedException();
}
public void SendTextJson(object resp, object output)
{
throw new NotImplementedException();
}
}