2025-03-31 22:29:43 +00:00

14 lines
283 B
JavaScript
Executable File

import { performance } from "node:perf_hooks"
export default {
ping: async (client, data) => {
client.emit("pong")
},
"topic:subscribe": async (client, topic) => {
client.subscribe(topic)
},
"topic:unsubscribe": async (client, topic) => {
client.unsubscribe(topic)
},
}