You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
336 B
C#

namespace NapCatRobotClient.Service.Dispatcher.Service
{
public interface IDispatcherService
{
/// <summary>
/// 接收消息并处理
/// </summary>
/// <param name="message"></param>
/// <returns></returns>
public Task<bool> ReceiveMessageAndProcess(string message);
}
}