mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-06 07:29:38 +00:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
import { ActionName } from '@/onebot/action/router';
|
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
|
|
|
export class GetRkey extends GetPacketStatusDepends<void, Array<unknown>> {
|
|
override actionName = ActionName.GetRkey;
|
|
|
|
async _handle() {
|
|
return await this.core.apis.PacketApi.pkt.operation.FetchRkey();
|
|
}
|
|
}
|