passless-core 0.11.0

Core types and configuration for Passless
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types and configuration for Passless
//!
//! This crate contains the core types and configuration structures used by both
//! the build script (for generating shell completions) and the runtime binary.

pub mod config;
pub mod error;

pub use config::{
    AppConfig, Args, BackendConfig, ClientAction, Commands, ConfigAction, OutputFormat, PinAction,
    SecurityConfig,
};
pub use error::{Error, Result};