···11pub mod auth;
22-pub mod repo;
32pub mod issue;
33+pub mod knot;
44pub mod pr;
55-pub mod knot;
55+pub mod repo;
66pub mod spindle;
7788use anyhow::Result;
99-use colored::Colorize;
1091110use crate::cli::{Cli, Command};
1211···2120 }
2221}
23222424-fn not_implemented(feature: &str) -> Result<()> {
2525- eprintln!("{} {}", "[todo]".yellow().bold(), feature);
2626- Ok(())
2727-}
2323+// All subcommands are currently implemented with stubs where needed.