1
2
3
4
5
6
7
8
use hermes_error::types::Error;

pub mod application;
pub mod command;
pub mod config;
pub mod output;

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