protocol: Minimize scope of `radicle::git::raw`

A tiny refactoring to make it less inviting to use
`radicle::git::raw`.
This commit is contained in:
Lorenz Leutgeb 2026-04-23 21:32:58 +02:00 committed by Lorenz Leutgeb
parent 8dba3ca9de
commit 60f42bff53
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ use std::io;
use thiserror::Error; use thiserror::Error;
use radicle::{cob, git::raw, identity, storage}; use radicle::{cob, identity, storage};
use radicle_fetch as fetch; use radicle_fetch as fetch;
#[derive(Debug, Error)] #[derive(Debug, Error)]
@ -10,7 +10,7 @@ pub enum Fetch {
#[error(transparent)] #[error(transparent)]
Run(#[from] fetch::Error), Run(#[from] fetch::Error),
#[error(transparent)] #[error(transparent)]
Git(#[from] raw::Error), Git(#[from] radicle::git::raw::Error),
#[error(transparent)] #[error(transparent)]
Storage(#[from] storage::Error), Storage(#[from] storage::Error),
#[error(transparent)] #[error(transparent)]