mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-29 04:41:22 +08:00
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
import { ActionName } from '../types';
|
|
import { GetPacketStatusDepends } from "@/onebot/action/packet/GetPacketStatus";
|
|
|
|
|
|
export class GetRkey extends GetPacketStatusDepends<null, Array<any>> {
|
|
actionName = ActionName.GetRkey;
|
|
|
|
async _handle() {
|
|
return await this.core.apis.PacketApi.sendRkeyPacket();
|
|
}
|
|
}
|