Files
rippled/include/xrpl/server/detail/JSONRPCUtil.h
2025-10-23 11:04:30 -04:00

20 lines
356 B
C++

#ifndef XRPL_SERVER_JSONRPCUTIL_H_INCLUDED
#define XRPL_SERVER_JSONRPCUTIL_H_INCLUDED
#include <xrpl/beast/utility/Journal.h>
#include <xrpl/json/Output.h>
#include <xrpl/json/json_value.h>
namespace ripple {
void
HTTPReply(
int nStatus,
std::string const& strMsg,
Json::Output const&,
beast::Journal j);
} // namespace ripple
#endif