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
8
9
10
//! Platform module for Syncable platform integration
//!
//! This module provides:
//! - Session state management for tracking selected projects and organizations
//! - API client for interacting with the Syncable Platform API

pub mod api;
pub mod session;

pub use session::PlatformSession;