asimov_cli/
lib.rs

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