mahler-core 0.25.0

An automated job orchestration library that builds and executes dynamic workflows
Documentation
1
2
3
4
5
//! Alias over [`core::result::Result`]

use crate::error::Error;

pub type Result<T> = std::result::Result<T, Error>;