You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
511 B
27 lines
511 B
using Microsoft.AspNetCore.SignalR;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GDZZ.Application.Service.LiveChat
|
|
{
|
|
/// <summary>
|
|
/// 即时聊天
|
|
/// </summary>
|
|
public class LiveChatService: Hub<ILiveChatService>
|
|
{
|
|
public LiveChatService()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 创建聊天
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<bool> CreateLinkCaht()
|
|
{
|
|
return Task.FromResult(true);
|
|
}
|
|
|
|
}
|
|
}
|