//! Push PDFs to a Ratta Supernote over its on-device Browse & Access HTTP //! server. LAN only, no cloud, no auth beyond an optional passcode. //! //! See `README.md` for usage and `CONTRIBUTING.md` for the internal layout. mod browse; mod client; mod discover; mod error; pub use client::{Entry, Reachability, Supernote}; pub use discover::discover; pub use error::Error; pub type Result = std::result::Result;