bingle_cli 0.2.8

Command line interface for Bingle: register handles, run nodes/relays, and trade BINGLE on Algorand.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Library surface for the `bingle_cli` binary.
//!
//! The binary keeps its command dispatch and process-exiting logic in `main.rs`, but pure argument
//! parsers live here so they can be unit tested from the test tree (per CLAUDE.md, tests are kept
//! out of the source files).
pub mod chat;
pub mod chat_receive;
pub mod chat_register;
pub mod chat_repl;
pub mod chat_send;
pub mod chat_state;