passage_auth/lib.rs
1#![allow(unused_imports)]
2#![allow(dead_code)]
3//!
4//! This crate provides a library for working with [Passage by 1Password](https://passage.1password.com),
5//! a modern passwordless authentication experience based on passkeys.
6//!
7//! See Passage [Authentication API](https://docs.passage.id/api-docs/authentication-api).
8
9extern crate reqwest;
10extern crate serde;
11extern crate serde_json;
12extern crate url;
13
14mod apis;
15mod config;
16mod error;
17mod passage;
18
19pub mod models;
20pub use config::Config;
21pub use error::*;
22pub use passage::Passage;