ssh-cli 0.2.0

Native Rust CLI that gives LLMs (Claude Code, Cursor, Windsurf) the ability to operate remote servers via SSH over stdin/stdout
Documentation
1
2
3
4
5
6
7
8
//! Particularidades da plataforma macOS.

use tracing::debug;

/// Inicializa particularidades do macOS.
pub fn inicializar() {
    debug!("plataforma macOS detectada");
}