Skip to main content

threads_rs/api/
mod.rs

1//! API endpoint implementations grouped by resource.
2
3/// Insights and metrics endpoints.
4pub mod insights;
5/// Location search and tagging endpoints.
6pub mod location;
7/// Post creation and publishing endpoints.
8pub mod posts;
9/// Post deletion endpoints.
10pub mod posts_delete;
11/// Post retrieval and listing endpoints.
12pub mod posts_read;
13/// Reply management endpoints.
14pub mod replies;
15/// Keyword and hashtag search endpoints.
16pub mod search;
17/// User profile and account endpoints.
18pub mod users;