Skip to main content

talk_core/
lib.rs

1//! The pure talk-cli engine. No I/O, no audio, no ML.
2
3pub mod cleanup;
4pub mod clock;
5pub mod entry;
6pub mod eval;
7pub mod format;
8pub mod frontmatter;
9pub mod matchq;
10pub mod palette;
11pub mod questions;
12pub mod render_model;
13pub mod selection;
14pub mod settle;
15pub mod slug;
16#[cfg(test)]
17mod test_support;