protocol: Minimize scope of `radicle:
:raw`
A tiny refactoring to make it less inviting to use
`radicle:
:raw`.
This commit is contained in:
parent
8dba3ca9de
commit
60f42bff53
|
|
@ -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)]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue