mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-27 17:16:31 +00:00
12 lines
261 B
C++
12 lines
261 B
C++
#ifndef _JSONUTILS_H_
|
|
#define _JSONUTILS_H_
|
|
|
|
#include "json_fwd.hpp"
|
|
|
|
namespace JSONUtils {
|
|
// check required data for reqeust
|
|
std::string CheckRequiredData(const nlohmann::json& data, const std::vector<std::string>& requiredData);
|
|
}
|
|
|
|
#endif // _JSONUTILS_H_
|