mirror of
https://github.com/ragestudio/linebridge.git
synced 2025-06-09 02:24:17 +00:00
14 lines
283 B
JavaScript
Executable File
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)
|
|
},
|
|
}
|