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

13 lines
263 B
C++

#pragma once
#include "../service.hpp"
class patch_kill_list_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;
};