pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(coverage_nightly, coverage(off))]
//! Data processing functions for demo analysis results.

use anyhow::Result;

// Step processing and extraction/parsing functions
include!("processing_extraction.rs");

// Web demo analysis helper functions
include!("processing_analyzers.rs");

// Unit tests and property tests
include!("processing_tests.rs");