1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Stateful in-memory implementations of all Interprex domain contracts. #![forbid(unsafe_code)] mod code_hosting; mod code_reviews; mod issues; mod jobs; mod releases; mod state; mod text_records; pub use state::{FakeProvider, FakeReviewDismissal}; #[cfg(test)] mod tests;