bird 0.2.0

X API CLI with entity caching, search, threads, and watchlists
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Per-command modules extracted from the dispatcher (`fn run`).
//!
//! Each submodule owns the arm body for one or more `Command::*` variants and
//! exposes a thin `pub fn run(...)` (or per-variant `pub fn run_<verb>`) that
//! the dispatcher delegates to.

pub mod bookmarks;
pub mod cache;
pub mod login;
pub mod profile;
pub mod raw_write;
pub mod reads;
pub mod search;
pub mod thread;
pub mod usage;
pub mod watchlist;
pub mod writes;