UVOVIM3OVNYAOOKZUYWWGTQUBAPJCXOGWBF2CIFHWHU6FWHNADYQC
A3RM526Y7LUXNYW4TL56YKQ5GVOK2R5D7JJVTSQ6TT5MEXIR6YAAC
SXEYMYF7P4RZMZ46WPL4IZUTSQ2ATBWYZX7QNVMS3SGOYXYOHAGQC
AEPEFS7O3YT7CRRFYQVJWUXUUSRGJ6K6XZQVK62B6N74UXOIFWYAC
/// Add a new remote #[clap(name = "add")] Add { path: String },
/// Add a new remote
#[clap(name = "add")]
Add { path: String },
Some(SubRemote::Add { path }) => { let mut txn = repo.pristine.mut_txn_begin()?; let id: [u8; 16] = rand::random(); txn.open_or_create_remote(id.into(), &path)?; txn.commit()?; }
Some(SubRemote::Add { path }) => {
let mut txn = repo.pristine.mut_txn_begin()?;
let id: [u8; 16] = rand::random();
txn.open_or_create_remote(id.into(), &path)?;
txn.commit()?;
}
}}impl From<[u8; 16]> for RemoteId { fn from(value: [u8; 16]) -> Self { Self(value)
impl From<[u8; 16]> for RemoteId {
fn from(value: [u8; 16]) -> Self {
Self(value)