Files
rathena/src/web/webutils.hpp
2022-10-08 20:18:04 -07:00

14 lines
307 B
C++

// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef WEB_UTILS_HPP
#define WEB_UTILS_HPP
#include <string>
#include <nlohmann/json_fwd.hpp>
bool mergeData(nlohmann::json &orig, const nlohmann::json &patch, bool merge_null);
#endif