feat: include chats.delete in example

This commit is contained in:
Adhiraj Singh
2022-07-14 11:24:15 +05:30
parent 7b8390f1ca
commit ba486f9367

View File

@@ -140,6 +140,10 @@ const startSock = async() => {
if(events['chats.update']) {
console.log(events['chats.update'])
}
if(events['chats.delete']) {
console.log('chats deleted ', events['chats.delete'])
}
}
)