mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-09 13:03:37 +08:00
11 lines
366 B
TypeScript
11 lines
366 B
TypeScript
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { GetPacketStatusDepends } from '@/napcat-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();
|
|
}
|
|
}
|