1 2 3 4 5 6 7 8 9
//! Library surface used by integration tests and re-used by main.rs. //! The binary entry point still lives in main.rs. pub mod cli; pub mod info; pub mod parse; pub mod pricing; pub mod run; pub mod schema; pub mod serve;