Skip to main content

the_code_graph_cli/commands/
stubs.rs

1use domain::error::{CodeGraphError, Result};
2
3pub fn not_implemented(command_name: &str) -> Result<()> {
4    Err(CodeGraphError::Other(format!(
5        "{command_name}: not yet implemented — coming in a future release"
6    )))
7}