feat(persistence): add SqliteSongRepository and SqliteRepositoryFactory

This commit is contained in:
2026-04-08 03:05:16 +02:00
parent 8f9886c9a9
commit 37a1e386e4
5 changed files with 3805 additions and 1 deletions

View File

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