icinga2/lib/remote/createobjecthandler.hpp
2026-01-22 12:41:21 +01:00

26 lines
478 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef CREATEOBJECTHANDLER_H
#define CREATEOBJECTHANDLER_H
#include "remote/httphandler.hpp"
namespace icinga
{
class CreateObjectHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(CreateObjectHandler);
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
const HttpApiRequest& request,
HttpApiResponse& response,
boost::asio::yield_context& yc
) override;
};
}
#endif /* CREATEOBJECTHANDLER_H */