otp_std/otp/
mod.rs

1//! One-Time Password (OTP) enums and types.
2
3pub mod core;
4pub mod type_of;
5
6pub use core::{Otp, Owned};
7pub use type_of::Type;