steid
Sign in
@jamesgill
/
steid
Code
Commits
5a2b113
At commit 5a2b113
Branches
main
steid
/
src
/
lib.rs
358 B
Code
·
Blame
·
Raw
1e1ae56
feat: identity domain model
1mo
1
//!
Steid — a personal-first gitforge.
2
//!
3
//!
Layered per `plans/architecture.md`: [`domain`] knows nothing about the outside
4
//!
world, [`application`] holds use cases and the ports they need, and
5
//!
[`infrastructure`] implements those ports and exposes the web surface.
6
7
pub
mod
application
;
af126c7
feat: tailwind theme and the first components
25d
8
pub
mod
components
;
1e1ae56
feat: identity domain model
1mo
9
pub
mod
domain
;
10
pub
mod
infrastructure
;