add -> remind rename subcommand

This commit is contained in:
2026-05-24 00:43:48 +02:00
parent 88504d6043
commit 605056d7cd
+2 -3
View File
@@ -8,15 +8,14 @@ pub const Subcommand = struct {
};
pub const subcommands = [_]Subcommand{
.{ .name = "add", .handler = handleAdd },
.{ .name = "remind", .handler = handleRemind },
.{ .name = "remove", .handler = handleRemove },
.{ .name = "done", .handler = handleDone },
.{ .name = "list", .handler = handleList },
};
pub fn handleAdd(args: *std.process.Args.Iterator) !void {
pub fn handleRemind(args: *std.process.Args.Iterator) !void {
_ = args;
std.debug.print("add!", .{});
}
pub fn handleRemove(args: *std.process.Args.Iterator) !void {