Initial commit
This commit is contained in:
14
src/lib.rs
Normal file
14
src/lib.rs
Normal file
@@ -0,0 +1,14 @@
|
||||
//! 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;
|
||||
Reference in New Issue
Block a user