0210
Some checks failed
test / Run tests (push) Failing after 13s
build / Build (push) Failing after 22s

This commit is contained in:
2025-02-10 18:10:50 +08:00
parent 1e8b5e6453
commit 36cf8ef5a7
11 changed files with 71 additions and 35 deletions

View File

@ -3,5 +3,9 @@ import { Group } from "@Packages/message/server";
export class GMApi {
constructor(private group: Group) {}
init() {}
init() {
this.group.on("requestXhr", async (data) => {
console.log(data);
});
}
}