onelo_backend/context.rs
1//! This module contains helpers for managing contextual information to be tracked throught the
2//! process.
3
4use std::error::Error;
5use std::result::Result as StdResult;
6
7/// The message delivered to the user.
8///
9/// This value is typically used in CLI commands to communicate successful outcomes to the user.
10pub type Message = String;
11
12/// Tidy result alias.
13pub type Result<T, E = Box<dyn Error>> = StdResult<T, E>;