Skip to main content

braze_sync/
lib.rs

1//! braze-sync: GitOps CLI for managing Braze configuration as code.
2//!
3//! See `docs/local/IMPLEMENTATION.md` for the full design contract.
4
5pub mod braze;
6pub mod cli;
7pub mod config;
8pub mod diff;
9pub mod error;
10pub mod format;
11pub mod fs;
12pub mod resource;
13
14pub use error::{Error, Result};