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