import { PacketContext } from '@/napcat-core/packet/context/packetContext'; import { NapCatCore } from '@/napcat-core/index'; export class PacketClientSession { private readonly context: PacketContext; constructor (core: NapCatCore) { this.context = new PacketContext(core); } init (pid: number, recv: string, send: string): Promise { return this.context.client.init(pid, recv, send); } get clientLogStack () { return this.context.client.clientLogStack; } get available () { return this.context.client.available; } get operation () { return this.context.operation; } // TODO: global message element adapter (? get msgConverter () { return this.context.msgConverter; } }