From da7ecd3660ebb6cbf46749c7586a45cde19d9011 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 20 Jan 2026 22:12:41 +0100 Subject: Add the 'tags' command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This command includes the create, ls, and rm subcommands, which allow for easy management of word tags. Signed-off-by: Miquel Sabaté Solà --- crates/cli/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crates/cli/src/main.rs') diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index 871490a..9753cf9 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs @@ -4,6 +4,7 @@ mod init; mod locale; mod nuke; mod run; +mod tags; mod words; /// Version for this program. @@ -60,6 +61,10 @@ fn main() { let rest: Vec = args.collect(); nuke::run(rest); } + "tags" => { + let rest: Vec = args.collect(); + tags::run(rest); + } "words" => { let rest: Vec = args.collect(); words::run(rest); -- cgit v1.2.3