the-code-graph-cli 0.1.2

Command-line interface for The Code Graph
Documentation
1
2
3
4
5
6
7
use domain::error::{CodeGraphError, Result};

pub fn not_implemented(command_name: &str) -> Result<()> {
    Err(CodeGraphError::Other(format!(
        "{command_name}: not yet implemented — coming in a future release"
    )))
}