pub mod args;
pub mod commands;
pub mod oneshot;
pub mod plain;
pub mod state;
pub mod tui;
pub mod exit_codes {
pub const SUCCESS: u8 = 0;
pub const NETWORK_ERROR: u8 = 1;
pub const AUTH_ERROR: u8 = 2;
pub const PROTOCOL_ERROR: u8 = 3;
pub const FRAME_REJECTED: u8 = 4;
}