mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-16 03:21:18 +00:00

* Break out changes into a smaller subset * NL@EOF * fix windows bs add player ws updates add websocket docs * tested everything to make sure it works * Address Feedback
12 lines
264 B
C++
12 lines
264 B
C++
#ifndef _JSONUTILS_H_
|
|
#define _JSONUTILS_H_
|
|
|
|
#include "json_fwd.hpp"
|
|
|
|
namespace JSONUtils {
|
|
// check required fields in json data
|
|
std::string CheckRequiredData(const nlohmann::json& data, const std::vector<std::string>& requiredData);
|
|
}
|
|
|
|
#endif // _JSONUTILS_H_
|