braze-sync 0.10.0

GitOps CLI for managing Braze configuration as code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! braze-sync: GitOps CLI for managing Braze configuration as code.
//!
//! See `docs/local/IMPLEMENTATION.md` for the full design contract.

pub mod braze;
pub mod cli;
pub mod config;
pub mod diff;
pub mod error;
pub mod format;
pub mod fs;
pub mod resource;

pub use error::{Error, Result};