using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Common.Tools;
namespace GxPress.Common.Address
{
public static class Address
{
///
/// 获取环信历史聊天记录
///
///
public static string GetImChatMassageUrl(string times)
{
var imServiceUrl= ConfigHelper.GetValue("ServiceAddress:ImUrl");
string imChatMassageUrl = $"{imServiceUrl}/chatmessages/{times}";
return imChatMassageUrl;
}
}
}