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::{AppConfig, Args, BackendConfig, Commands, ConfigAction, SecurityConfig};
10pub use error::{Error, Result};