asimov_cli/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3pub mod commands;
4pub mod features;
5pub mod shared;
6
7use clientele::{StandardOptions, SysexitsError};
8
9pub type Result<T = SysexitsError, E = SysexitsError> = std::result::Result<T, E>;