Files
rippled/include/xrpl/server/detail/JSONRPCUtil.h
2025-11-10 11:49:19 -05:00

20 lines
352 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 xrpl {
void
HTTPReply(
int nStatus,
std::string const& strMsg,
Json::Output const&,
beast::Journal j);
} // namespace xrpl
#endif