relay-cli 0.1.2

CLI interface for Relay Agents.
1
2
3
4
5
use relay_lib::prelude::Address;

pub fn parse_address(s: &str) -> Result<Address, String> {
    Address::parse(s).map_err(|e| e.to_string())
}