greatly improve user caching system

This commit is contained in:
2025-05-31 19:34:47 +02:00
parent caa2490fd4
commit b8fa39418d
3 changed files with 70 additions and 26 deletions

View File

@@ -1,5 +1,9 @@
import { eventSub } from "..";
eventSub.onRevoke(event => {
console.info(`Successfully revoked EventSub subscription: ${event.id}`);
});
eventSub.onSubscriptionCreateSuccess(event => {
console.info(`Successfully created EventSub subscription: ${event.id}`);
});