15 lines
448 B
Rust
15 lines
448 B
Rust
//! Music file organization and renaming for Shanty.
|
|
//!
|
|
//! Organizes music files into a clean directory structure (e.g.,
|
|
//! Artist/Album/Track) and renames them according to configurable templates.
|
|
|
|
pub mod error;
|
|
pub mod metadata;
|
|
pub mod organizer;
|
|
pub mod sanitize;
|
|
pub mod template;
|
|
|
|
pub use error::{OrgError, OrgResult};
|
|
pub use organizer::{OrgConfig, OrgStats, organize_from_db, organize_from_directory};
|
|
pub use template::DEFAULT_FORMAT;
|