1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// SPDX-License-Identifier: Apache-2.0 // Copyright (C) 2025-2026 Michael Dippery <michael@monkey-robot.com> #![cfg_attr(not(doctest), doc = include_str!("../README.md"))] pub mod cli; pub mod count; pub mod filter; pub mod reddit; pub mod summary; pub mod text; pub mod view; #[cfg(test)] mod test_utils;