firecloud-cli 0.2.0

Command-line interface for FireCloud P2P messaging and file sharing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Peers command - List known peers

use anyhow::Result;
use std::path::PathBuf;
use tracing::info;

pub async fn run(_data_dir: PathBuf) -> Result<()> {
    info!("Known peers:");

    // TODO: Load peers from local storage
    // For now, just show placeholder

    info!("⚠️  No peers discovered yet. Run 'firecloud node' first.");

    Ok(())
}