#pragma once #include #include #include #include #include namespace xrpl { /** 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 xrpl