client-api: Fix accidentally private response field

This commit is contained in:
Jonas Platte 2023-06-08 11:35:21 +02:00
parent ba5bf8cfce
commit 82bfb2e4d2
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C

View File

@ -45,7 +45,7 @@ pub mod v1 {
/// The duration in milliseconds that the `POST /_matrix/app/v1/ping` request took from the
/// homeserver's point of view.
#[serde(with = "ruma_common::serde::duration::ms", rename = "duration_ms")]
duration: Duration,
pub duration: Duration,
}
impl Request {