You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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