1// This is free and unencumbered software released into the public domain.
23#![allow(unused)]
45pub mod commands;
6pub mod features;
7pub mod shared;
89use clientele::{StandardOptions, SysexitsError};
1011pub type Result<T = SysexitsError, E = SysexitsError> = std::result::Result<T, E>;