mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 23:20:33 +00:00
23 lines
479 B
C++
23 lines
479 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
#include <xrpl/server/detail/ServerImpl.h>
|
|
|
|
#include <boost/asio/io_context.hpp>
|
|
|
|
#include <memory>
|
|
|
|
namespace xrpl {
|
|
|
|
/**
|
|
* Create the HTTP server using the specified handler.
|
|
*/
|
|
template <class Handler>
|
|
std::unique_ptr<Server>
|
|
makeServer(Handler& handler, boost::asio::io_context& ioContext, beast::Journal journal)
|
|
{
|
|
return std::make_unique<ServerImpl<Handler>>(handler, ioContext, journal);
|
|
}
|
|
|
|
} // namespace xrpl
|