braze-sync 0.2.1

GitOps CLI for managing Braze configuration as code
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `braze-sync` binary entry point.
//!
//! Defers all logic to [`braze_sync::cli`] so the binary stays a thin
//! wrapper around the library — keeps the surface symmetric for embedding
//! and integration testing via `assert_cmd`.

#[tokio::main]
async fn main() {
    let code = braze_sync::cli::run().await;
    std::process::exit(code);
}