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