noosphere-cli 0.17.0

Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol
Documentation
1
2
3
4
5
6
7
8
use crate::workspace::Workspace;
use anyhow::Result;

/// Render the workspace up to a specified maximum render depth
pub async fn render(render_depth: Option<u32>, workspace: &Workspace) -> Result<()> {
    workspace.render(render_depth, true).await?;
    Ok(())
}