/* * Copyright (C) 2026-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include #include namespace utils::http { using retryable = seastar::bool_class; retryable from_http_code(seastar::http::reply::status_type http_code); retryable from_system_error(const std::system_error& system_error); } // namespace utils::http