// Copyright 2023 David Weikersdorfer
use ;
pub const SKIPPED: Outcome = Ok;
// TODO to be enabled #[deprecated(note = "use RUNNING instead")]
pub const SUCCESS: Outcome = Ok;
pub const RUNNING: Outcome = Ok;
/// Result of an task
// TODO to be deprecated
pub type Outcome = Result;
// TODO to be deprecated
pub type OutcomeKind = DefaultStatus;