harmony/src/gateway/handlers/reconnect.ts

9 lines
182 B
TypeScript
Raw Normal View History

import { Gateway, GatewayEventHandler } from '../index.ts'
export const reconnect: GatewayEventHandler = async (
gateway: Gateway,
d: any
) => {
gateway.reconnect()
}