asimov_cli/
lib.rs

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