1//! Remote operations and types. 2 3pub mod ops; 4pub mod types; 5 6pub use ops::{fetch_remote, list_remotes, pull, push}; 7pub use types::RemoteInfo;