master-server/src/services/patch_kill_list_command.hpp

13 lines
263 B
C++
Raw Normal View History

2023-05-26 16:09:29 +02:00
#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;
};