ringo_core/lib.rs
1//! Shared engine for the ringo tools: spawning baresip, the ctrl_tcp wire
2//! protocol, the call-event model and the phone command abstraction. Kept free
3//! of any TUI or ringo-specific configuration so it can back both the `ringo`
4//! softphone and the `ringo-flow` scenario runner.
5
6pub mod baresip;
7pub mod client;
8pub mod event;
9pub mod log;
10pub mod phone;
11pub mod siptrace;