mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
9697f95b8f
This reverts commit 15d999759e
.
20 lines
341 B
C++
20 lines
341 B
C++
#pragma once
|
|
|
|
struct restart_req_t;
|
|
struct restart_res_t;
|
|
class http_client;
|
|
|
|
class service_restart
|
|
{
|
|
public:
|
|
service_restart(http_client& client) : client_(client) {}
|
|
~service_restart(void) {}
|
|
|
|
bool run(acl::json& json);
|
|
|
|
private:
|
|
http_client& client_;
|
|
|
|
bool handle(const restart_req_t& req, restart_res_t& res);
|
|
};
|