iris-chat 0.1.11

Iris Chat command line client and shared encrypted chat core
Documentation
1
2
3
4
5
6
7
fn main() -> anyhow::Result<()> {
    let bind_addr = std::env::args()
        .nth(1)
        .or_else(|| std::env::var("IRIS_LOCAL_RELAY_BIND").ok())
        .unwrap_or_else(|| "0.0.0.0:4848".to_string());
    iris_chat_core::local_relay::run_forever(&bind_addr)
}