23 lines
474 B
C#
23 lines
474 B
C#
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;
|
|
}
|
|
}
|
|
}
|