Fix field not being public

This commit is contained in:
Joscha 2022-08-22 16:54:38 +02:00
parent b8ac67631e
commit 516bb82323

View file

@ -116,5 +116,5 @@ pub struct Who;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WhoReply {
/// A list of session views.
listing: Vec<SessionView>,
pub listing: Vec<SessionView>,
}