mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-03 20:37:50 +08:00
22 lines
329 B
C++
22 lines
329 B
C++
/*
|
|
* Copyright(C) 2021 hikyuu.org
|
|
*
|
|
* Create on: 2021-03-07
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../http/HttpHandle.h"
|
|
|
|
namespace hku {
|
|
|
|
class RestHandle : public HttpHandle {
|
|
CLASS_LOGGER(RestHandle)
|
|
|
|
public:
|
|
RestHandle(nng_aio *aio);
|
|
virtual void before_run() override;
|
|
};
|
|
|
|
} // namespace hku
|