mobius-cli 0.15.31

The terminal client for a möbius gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shared terminal frontends and local gateway-account storage.

pub mod command;
pub mod frontend;
/// Gateway accounts support.
pub mod gateway_accounts;

/// Converts a gateway transport/protocol failure without losing its diagnostic text.
pub fn gateway_error(error: mobius_gateway::Error) -> mobius::Error {
    mobius::Error::Stopped(error.to_string())
}