passless_core/
lib.rs

1//! Core types and configuration for Passless
2//!
3//! This crate contains the core types and configuration structures used by both
4//! the build script (for generating shell completions) and the runtime binary.
5
6pub mod config;
7pub mod error;
8
9pub use config::{
10    AppConfig, Args, BackendConfig, ClientAction, Commands, ConfigAction, OutputFormat, PinAction,
11    SecurityConfig,
12};
13pub use error::{Error, Result};