otp_std/auth/
mod.rs

1//! One-Time Password authentication.
2
3pub mod core;
4pub mod label;
5pub mod part;
6pub mod query;
7pub mod scheme;
8pub mod url;
9pub mod utf8;
10
11pub use core::{Auth, Owned};
12pub use label::{Label, Owned as OwnedLabel};
13pub use part::{Owned as OwnedPart, Part};
14pub use scheme::SCHEME;
15pub use url::Url;