harmony/src/gateway/handlers/reconnect.ts

6 lines
198 B
TypeScript
Raw Normal View History

2020-11-03 23:00:03 +00:00
import { Gateway } from "../index.ts"
import { GatewayEventHandler } from "../index.ts"
export const reconnect: GatewayEventHandler = async (gateway: Gateway, d: any) => {
gateway.reconnect()
}