introduce a new taskchampion::server::SyncOp type

This commit is contained in:
Dustin J. Mitchell 2021-12-19 19:50:26 +00:00
parent ff9ad8185b
commit 6f7794c7de
3 changed files with 449 additions and 2 deletions

View file

@ -14,6 +14,7 @@ pub(crate) mod test;
mod config;
mod crypto;
mod local;
mod op;
mod remote;
mod types;
@ -21,3 +22,5 @@ pub use config::ServerConfig;
pub use local::LocalServer;
pub use remote::RemoteServer;
pub use types::*;
pub(crate) use op::SyncOp;