ringo_core/lib.rs
1//! Shared engine for the ringo tools: backend abstraction and the phone
2//! command interface. Kept free of any TUI or ringo-specific configuration so
3//! it can back both the `ringo` softphone and the `ringo-flow` scenario runner.
4
5pub mod account;
6pub mod backend;
7pub mod event;
8pub mod log;
9pub mod phone;
10
11pub use backend::{
12 call_count, is_registered, received_audio, sent_audio, shutdown, sip_trace_file,
13 sip_trace_stderr,
14};
15
16mod baresip;