summary refs log tree commit diff
path: root/src/opcodes/Resume.ts
blob: 3c54b5c71a7f3c245a58f4679cd8d1407bcd95a1 (plain) (blame)
1
2
3
4
5
6
7
import { CLOSECODES, Payload } from "../util/Constants";

import WebSocket from "../util/WebSocket";

export function onResume(this: WebSocket, data: Payload) {
	return this.close(CLOSECODES.Invalid_session);
}