forked from MightyPork/elefren-fork
8 lines
154 B
Rust
8 lines
154 B
Rust
use super::status::Status;
|
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
|
pub struct Context {
|
|
pub ancestors: Vec<Status>,
|
|
pub descendants: Vec<Status>,
|
|
}
|