synd_auth/
lib.rs

1//! syndicationd authentication crate providing features
2//! related OAuth and JWT.
3#![warn(rustdoc::broken_intra_doc_links)]
4
5mod config;
6pub mod device_flow;
7pub mod jwt;
8
9const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));