mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
11 lines
224 B
Rust
11 lines
224 B
Rust
use std::sync::Arc;
|
|
|
|
use patch_db::Revision;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
pub struct WithRevision<T> {
|
|
pub response: T,
|
|
pub revision: Option<Arc<Revision>>,
|
|
}
|