syncable_cli/platform/mod.rs
1//! Platform module for Syncable platform integration
2//!
3//! This module provides:
4//! - Session state management for tracking selected projects and organizations
5//! - API client for interacting with the Syncable Platform API
6
7pub mod api;
8pub mod session;
9
10pub use session::PlatformSession;