@jpgilldev / steid

steid/src/lib.rs
358 BRaw
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
7pub mod application;
8pub mod components;
9pub mod domain;
10pub mod infrastructure;