From 4e22338181776cf8de7360fbb33fb175da851ded Mon Sep 17 00:00:00 2001 From: gil Date: Mon, 3 Jun 2024 00:56:49 -0500 Subject: [PATCH] Add small comment at top of each file to show where in src code we are --- src/cli.rs | 2 ++ src/manip.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/cli.rs b/src/cli.rs index ff4bdde..4f1071c 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,3 +1,5 @@ +// src/cli.rs + use std::path::PathBuf; use clap::Parser; diff --git a/src/manip.rs b/src/manip.rs index 9a48b61..eea1a06 100644 --- a/src/manip.rs +++ b/src/manip.rs @@ -1,3 +1,5 @@ +// src/manip.rs + use std::{collections::HashMap, fs, path::PathBuf}; use log::error;