mobius_cli/lib.rs
1//! Shared terminal frontends and local gateway-account storage.
2
3pub mod command;
4pub mod frontend;
5/// Gateway accounts support.
6pub mod gateway_accounts;
7
8/// Converts a gateway transport/protocol failure without losing its diagnostic text.
9pub fn gateway_error(error: mobius_gateway::Error) -> mobius::Error {
10 mobius::Error::Stopped(error.to_string())
11}