Skip to main content

spec_driven_docs/
adapters.rs

1//! I/O at the edges.
2//!
3//! Adapters wrap the filesystem so services stay testable over plain values.
4//! No policy lives here — what to hash, copy, or refuse is the services'
5//! judgment.
6
7pub mod fs;
8pub mod git;