fix: add test

This commit is contained in:
手瓜一十雪
2024-10-13 19:23:28 +08:00
parent 7bcff34562
commit 6c58a8ac6e
4 changed files with 30 additions and 2 deletions

View File

@@ -115,4 +115,9 @@ export class NTQQPacketApi {
return undefined
}
}
async sendSetSpecialTittlePacket(groupCode: string, uid: string, tittle: string) {
let data = this.packetPacker.packSetSpecialTittlePacket(groupCode, uid, tittle);
let ret = await this.core.apis.PacketApi.sendPacket('OidbSvcTrpcTcp.0x8fc_2', data, true);
console.log('ret: ', ret);
}
}