mod arguments;
pub use arguments::Arguments;
pub mod command;
pub use command::Command;
pub fn agent() -> (&'static str, Option<&'static str>) {
("agent", Some(concat!("git/oxide-", env!("CARGO_PKG_VERSION"))))
}
pub mod delegate;
#[cfg(any(feature = "async-client", feature = "blocking-client"))]
pub use delegate::Delegate;
pub use delegate::{Action, DelegateBlocking, LsRefsAction};
mod error;
pub use error::Error;
pub mod refs;
pub use refs::Ref;
pub mod response;
pub use response::Response;
#[cfg(test)]
mod tests;