adrscope 0.3.0

A lightweight, zero-dependency visualization tool for Architecture Decision Records
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Infrastructure layer for external concerns.
//!
//! This module contains implementations that interact with external systems:
//! filesystem, parsing libraries, and rendering.

pub mod fs;
pub mod parser;
pub mod renderer;

pub use fs::{FileSystem, RealFileSystem};
pub use parser::{AdrParser, DefaultAdrParser};
pub use renderer::{HtmlRenderer, RenderConfig, Theme};