git_xcrypt/commands/mod.rs
1//! The user-facing commands.
2//!
3//! Each one returns a [`crate::Result`]; the binary turns an error into the
4//! matching exit code. Nothing here writes to `stdout` unless the command's
5//! whole purpose is to produce output.
6
7pub mod diff;
8pub mod export_key;
9pub mod filter;
10pub mod init;
11pub mod lock;
12pub mod process;
13pub mod status;
14pub mod sync;
15pub mod unlock;