distant_auth/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[doc = include_str!("../README.md")]
4#[cfg(doctest)]
5pub struct ReadmeDoctests;
6
7mod authenticator;
8mod handler;
9mod methods;
10pub mod msg;
11
12pub use authenticator::*;
13pub use handler::*;
14pub use methods::*;
15
16#[cfg(any(test, feature = "tests"))]
17pub mod tests {
18 pub use crate::{TestAuthHandler, TestAuthenticator};
19}