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
use std::path::Path;

pub mod env;
pub mod format_manager;
pub mod json;
pub mod toml;
pub mod yaml;
pub mod postman;
pub mod key;
pub mod key_collection;
pub mod parser;
pub mod metadata;


// use crate::file::format_adapter::FormatAdapter;


// use crate::file::json::JsonAdapter;
// use crate::file::toml::TomlAdapter;
// use crate::file::yaml::YamlAdapter;
// use crate::file::postman::PostmanAdapter;
// use crate::file::env::EnvAdapter;

// use crate::file::format_manager::FORMAT_MANAGER;