DarkflameServer/dChatServer/ChatWebAPI.h
David Markowitz 6e66c5c362 works
2025-01-02 18:42:50 -08:00

23 lines
309 B
C++

#ifndef CHATWEBAPI_H
#define CHATWEBAPI_H
#include "mongoose.h"
#include "json_fwd.hpp"
#include "GeneralUtils.h"
using json = nlohmann::json;
typedef struct mg_mgr mg_mgr;
class ChatWebAPI {
public:
ChatWebAPI();
~ChatWebAPI();
void ReceiveRequests();
void Listen();
private:
mg_mgr mgr;
};
#endif