ft_irc/include/commands/pong.hpp

21 lines
1,009 B
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* pong.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/06/02 22:48:36 by rparodi #+# #+# */
/* Updated: 2025/06/02 23:01:19 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "commands.hpp"
class cmd::Pong {
public:
Pong(void){}
clock_t answer(clock_t start);
};