Some checks are pending
Rust / build (push) Waiting to run
Adds a command to reorganize a folder of photos, renaming them so that they contain date and time so that they're sorted by that. This also renames files associated with the photos, like the descriptions, like IMG_1234.jpg with IMG_1234.md
7 lines
115 B
Rust
7 lines
115 B
Rust
pub(crate) mod config;
|
|
pub mod generate;
|
|
pub mod reorganize;
|
|
pub mod skel;
|
|
|
|
#[cfg(test)]
|
|
pub(crate) mod test_util;
|