keyflux 0.1.14

A CLI tool and library for synchronizing environment secrets across multiple platforms including local files, GitHub Secrets, Supabase Vault, and Vercel Secrets. It facilitates secure management and automation of sensitive data.
Documentation
//! Error module
//!
//! This module defines the different types of errors that can occur in the application.
//! It includes submodules for specific error types and re-exports commonly used errors.

/// Submodule for errors related to keys.
pub mod key;

/// Submodule for errors related to flux operations.
pub mod flux;

/// Submodule for errors related to configuration handling.
pub mod config;

/// Re-export of `FluxError` from the `flux` submodule.
pub use crate::error::flux::FluxError;

/// Re-export of `ConfigError` from the `config` submodule.
pub use crate::error::config::ConfigError;

/// Re-export of `KeyError` from the `key` submodule.
pub use crate::error::key::KeyError;