blob: 9a4fe2358eb201d956f11ad4b94f53aaa9021bd0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
use serde_derive::Serialize;
#[derive(Serialize)]
pub struct Statistics {
pub message: String,
}
|