1//! # cosmwasm off-chain auth
2//!
3//! a utility that takes an ADR-036 signed document containing an auth token, decodes
4//! and verifies it, returning the inner token if it is valid
56pub mod error;
7pub mod auth;
89pub use crate::auth::*;
10pub use crate::error::AuthError;