syncable-cli 0.37.1

A Rust-based CLI that analyzes code repositories and generates Infrastructure as Code configurations
Documentation
1
2
3
4
5
6
7
//! Output formatting for optimization results.
//!
//! Supports multiple output formats: table, JSON, YAML, and plain text.

mod output;

pub use output::{OutputFormat, format_result, format_result_to_string};