// Copyright 2019 Fuzhou Rockchip Electronics Co., Ltd. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef __CGI_EVENT_API_H__ #define __CGI_EVENT_API_H__ #include "api_handler.h" namespace rockchip { namespace cgi { class EventApiHandler : public ApiHandler { public: EventApiHandler() = default; ~EventApiHandler() = default; virtual void handler(const HttpRequest &Req, HttpResponse &Resp) final; }; } // namespace cgi } // namespace rockchip #endif // __CGI_EVENT_API_H__