make UpstreamError pub

feature/v32-tokens
Edward Shen 2021-04-09 22:00:09 -04:00
parent 70b7e61745
commit c776f09026
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ impl FromFsStream {
}
/// Represents some upstream error.
struct UpstreamError;
pub struct UpstreamError;
impl Stream for FromFsStream {
type Item = Result<Bytes, UpstreamError>;