Add small comment at top of each file to show where in src code we are

This commit is contained in:
gil 2024-06-03 00:56:49 -05:00
parent d8aabb387d
commit 4e22338181
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,5 @@
// src/cli.rs
use std::path::PathBuf; use std::path::PathBuf;
use clap::Parser; use clap::Parser;

View file

@ -1,3 +1,5 @@
// src/manip.rs
use std::{collections::HashMap, fs, path::PathBuf}; use std::{collections::HashMap, fs, path::PathBuf};
use log::error; use log::error;