2019-08-23 16:04:19 +03:00

8 lines
204 B
TypeScript

import { IClient } from "../../../models/client";
export const HeartbeatHandler = (client: IClient): boolean => {
const nowTime = new Date().getTime();
client.setLastPing(nowTime);
return true;
};