Skip to main content

max / supernote-push

429 B · 16 lines History Blame Raw
1 //! Push PDFs to a Ratta Supernote over its on-device Browse & Access HTTP
2 //! server. LAN only, no cloud, no auth beyond an optional passcode.
3 //!
4 //! See `README.md` for usage and `CONTRIBUTING.md` for the internal layout.
5
6 mod browse;
7 mod client;
8 mod discover;
9 mod error;
10
11 pub use client::{Entry, Reachability, Supernote};
12 pub use discover::discover;
13 pub use error::Error;
14
15 pub type Result<T> = std::result::Result<T, Error>;
16