StepResult: make public

This commit is contained in:
Graham Christensen 2019-03-22 13:46:52 -04:00
parent d9d3ac5fcb
commit 3b4117e6eb
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -24,7 +24,7 @@ pub trait EvaluationStrategy {
) -> StepResult<Vec<BuildJob>>;
}
type StepResult<T> = Result<T, Error>;
pub type StepResult<T> = Result<T, Error>;
#[derive(Debug)]
pub enum Error {