asg_backend/qqbot/sendmsg.cs

23 lines
474 B
C#
Raw Normal View History

2024-10-19 14:20:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zack.EventBus;
namespace qqbot
{
[EventName("查询选手req")]
internal class sendmsg : IIntegrationEventHandler
{
public Task Handle(string eventName, string eventData)
{
if (eventName == "查询选手req")
{
}
return Task.CompletedTask;
}
}
}