1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![doc = include_str!("../README.md")]

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;

mod authenticator;
mod handler;
mod methods;
pub mod msg;

pub use authenticator::*;
pub use handler::*;
pub use methods::*;

#[cfg(any(test, feature = "tests"))]
pub mod tests {
    pub use crate::{TestAuthHandler, TestAuthenticator};
}