webutils.hpp 307 B

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