1//! Server: Authentication Server 2mod auth; 3pub(crate) mod card; 4mod keys; 5mod server; 6pub(crate) mod yivi; 7 8pub use server::{Details, Server};