#pragma once #include #include #include #include #include namespace xrpl { /** Create the HTTP server using the specified handler. */ template std::unique_ptr makeServer(Handler& handler, boost::asio::io_context& ioContext, beast::Journal journal) { return std::make_unique>(handler, ioContext, journal); } } // namespace xrpl