Added the scaffolding
This commit is contained in:
13
shanty-org/Cargo.toml
Normal file
13
shanty-org/Cargo.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[package]
|
||||
name = "shanty-org"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Music file organization and renaming for Shanty"
|
||||
|
||||
[dependencies]
|
||||
shanty-db = { path = "../shanty-db" }
|
||||
clap = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
4
shanty-org/src/lib.rs
Normal file
4
shanty-org/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
//! Music file organization and renaming.
|
||||
//!
|
||||
//! Organizes music files into a clean directory structure (e.g.,
|
||||
//! Artist/Album/Track) and renames them according to configurable templates.
|
||||
3
shanty-org/src/main.rs
Normal file
3
shanty-org/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("shanty-org: music file organization and renaming");
|
||||
}
|
||||
Reference in New Issue
Block a user