mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-08-03 14:27:35 +08:00
18 lines
375 B
C++
18 lines
375 B
C++
#ifndef WXHELPER_HTTP_HANDLER_H_
|
|
#define WXHELPER_HTTP_HANDLER_H_
|
|
#include "handler.h"
|
|
#include "mongoose.h"
|
|
#include <vector>
|
|
#include <string>
|
|
#include <nlohmann/json.hpp>
|
|
namespace wxhelper {
|
|
class HttpHandler : public Handler {
|
|
public:
|
|
HttpHandler();
|
|
~HttpHandler();
|
|
void HandlerRequest(struct mg_connection *c, void *ev_data);
|
|
};
|
|
|
|
} // namespace wxhelper
|
|
#endif
|