From df9b2823b698673e18e70335534ee29e40fcc8ec Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Sun, 1 Feb 2026 11:32:39 -0700 Subject: [PATCH] stub edit --- pttodoest/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pttodoest/src/main.rs b/pttodoest/src/main.rs index 52db5d0..a1026ff 100755 --- a/pttodoest/src/main.rs +++ b/pttodoest/src/main.rs @@ -6,6 +6,10 @@ use std::io::{BufRead, Read, Write}; pub fn main() { let flags = Flags::new().expect("failed to flags"); + if let Some(add) = flags.add { + panic!("not impl: add {}", add); + } + if flags.edit { edit(flags.files().expect("couldnt find files from flags")).expect("failed to edit"); }