Files
taskwarrior-2.x/sync-server/src/api/mod.rs
2020-11-26 19:59:52 -05:00

9 lines
252 B
Rust

use crate::server::SyncServer;
use std::sync::Arc;
pub(crate) mod add_version;
pub(crate) mod get_child_version;
/// The type containing a reference to the SyncServer object in the Actix state.
pub(crate) type ServerState = Arc<Box<dyn SyncServer>>;