From 7da42521e93f3e95a786761e1bf83dcfb5f0392f Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Sun, 1 Feb 2026 11:35:49 -0700 Subject: [PATCH] stub add, edit, dump --- pttodoest/src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pttodoest/src/main.rs b/pttodoest/src/main.rs index e755be4..4d24c35 100755 --- a/pttodoest/src/main.rs +++ b/pttodoest/src/main.rs @@ -18,6 +18,8 @@ pub fn main() { if flags.edit { edit(flags.files().expect("couldnt find files from flags")).expect("failed to edit"); } + + dump(flags.files().expect("couldnt find files from flags")).expect("failed to dump"); } #[derive(Debug, Parser)] @@ -112,6 +114,10 @@ fn edit(files: Vec) -> Result<(), String> { Err("not impl".to_string()) } +fn dump(files: Vec) -> Result<(), String> { + Err("not impl".to_string()) +} + mod tests { use super::*;