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