···1pub mod auth;
2-pub mod repo;
3pub mod issue;
04pub mod pr;
5-pub mod knot;
6pub mod spindle;
78use anyhow::Result;
9-use colored::Colorize;
1011use crate::cli::{Cli, Command};
12···21 }
22}
2324-fn not_implemented(feature: &str) -> Result<()> {
25- eprintln!("{} {}", "[todo]".yellow().bold(), feature);
26- Ok(())
27-}
···1pub mod auth;
02pub mod issue;
3+pub mod knot;
4pub mod pr;
5+pub mod repo;
6pub mod spindle;
78use anyhow::Result;
0910use crate::cli::{Cli, Command};
11···20 }
21}
2223+// All subcommands are currently implemented with stubs where needed.
000