portaki-cli 0.2.0

Portaki module CLI (portaki) — init, build, lint, test, and OCI publish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `portaki docs` — local documentation server hint.

use anyhow::Result;
use clap::Parser;

#[derive(Debug, Parser)]
/// Arguments for `portaki docs`.
pub struct DocsArgs {}

/// Runs `portaki docs`.
pub fn run(_args: DocsArgs) -> Result<()> {
    println!("Generate Rust API docs with:");
    println!("  cargo doc --workspace --no-deps --open");
    println!("SDUI catalog: portaki catalog --format json");
    Ok(())
}