feat(common): add SongService application layer

This commit is contained in:
2026-04-08 03:05:50 +02:00
parent 37a1e386e4
commit 0b47282547
2 changed files with 45 additions and 0 deletions

17
crates/common/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "common"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
rand = { workspace = true }
async-trait = { workspace = true }
domain = { path = "../domain" }