adrscope/infrastructure/mod.rs
1//! Infrastructure layer for external concerns.
2//!
3//! This module contains implementations that interact with external systems:
4//! filesystem, parsing libraries, and rendering.
5
6pub mod fs;
7pub mod parser;
8pub mod renderer;
9
10pub use fs::{FileSystem, RealFileSystem};
11pub use parser::{AdrParser, DefaultAdrParser};
12pub use renderer::{HtmlRenderer, RenderConfig, Theme};