pubhubs/lib.rs
1//! Documentation for the (rust) backend servers of [pubhubs](https://app.pubhubs.net).
2//!
3//! <div class="katex-warning" style="border:2px solid #c00;background:#fee;color:#600;padding:0.75em 1em;border-radius:4px;">
4//! <strong>KaTeX header not loaded.</strong>
5//! Math in doc-comments will not render. Build with <code>cargo doc-math</code>
6//! instead of plain <code>cargo doc</code>.
7//! </div>
8//!
9//! See [`api`] for an overview.
10
11pub mod cli;
12
13pub mod api;
14pub mod attr;
15pub mod client;
16pub mod common;
17pub mod handle;
18pub mod hub;
19pub mod id;
20pub mod map;
21pub mod misc;
22pub mod phcrypto;
23pub mod servers;