usaidwat 4.1.0

Answers the age-old question, "Where does a Redditor comment the most?"
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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 markdown;
pub mod reddit;
pub mod summary;
pub mod text;
pub mod view;

#[cfg(test)]
mod test_utils;