feat(domain): value objects, entities, port traits with tests

This commit is contained in:
2026-05-17 23:52:46 +02:00
parent fa867a837f
commit ed5e238a9c
14 changed files with 194 additions and 0 deletions

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

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