Files
master-server/src/services/getservers_command.hpp
T
2023-05-26 16:09:29 +02:00

13 lines
258 B
C++

#pragma once
#include "../service.hpp"
class getservers_command : public service
{
public:
using service::service;
const char* get_command() const override;
void handle_command(const network::address& target, const std::string_view& data) override;
};