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)) +}