#ifndef XRPL_SERVER_SERVER_H_INCLUDED #define XRPL_SERVER_SERVER_H_INCLUDED #include #include #include #include #include namespace ripple { /** Create the HTTP server using the specified handler. */ template std::unique_ptr make_Server( Handler& handler, boost::asio::io_context& io_context, beast::Journal journal) { return std::make_unique>(handler, io_context, journal); } } // namespace ripple #endif