DarkflameServer/dCommon/JSONUtils.h
2025-01-26 00:44:17 -06:00

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_