1 2 3 4 5 6 7 8 9
// src/sops/mod.rs pub mod crypto; pub mod gitignore; pub mod manager; use crate::errors::{ConfGuardError, ConfGuardResult}; use std::fs; use std::io::Write; use std::path::PathBuf;