From 5093303e8d95171575c5e2f689f9dca0ad0c1dad Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 23 Feb 2026 15:12:43 +0000 Subject: [PATCH] adding future functions --- src/utils.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/utils.rs b/src/utils.rs index 45b184a..42d8b46 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -17,3 +17,8 @@ pub fn copy_files(files: Vec<&Path>, dest_dir: &Path) -> Result<(), io::Error> { } Ok(()) } + +pub fn session_step(session_file: &Path) -> Result> { + // Read ./.tour/session to find what step user is currently looking at + Ok((0)) +}