Patch Search.js and chat, online display in live, invite to game in progress

This commit is contained in:
Xamora 2024-05-14 03:28:32 +02:00
parent 18bc8a0028
commit d9d35861f6

View File

@ -0,0 +1,22 @@
class Ask {
constructor(client) {
this.client = client;
}
async ask_game(asked) {
response = await this.client._post(`/api/chat/ask/`);
}
async ask_game_canceled() {
}
async ask_game_accepted() {
}
async ask_game_refused() {
}
}