feat(domain): add Chord struct with parsing and display

This commit is contained in:
2026-04-08 01:31:17 +02:00
parent ac1f1bd3da
commit 422afbb3f2
3 changed files with 100 additions and 0 deletions

13
crates/domain/Cargo.toml Normal file
View File

@@ -0,0 +1,13 @@
[package]
name = "domain"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
async-trait = { workspace = true }