tokmd-analysis-types 1.11.1

Analysis receipt contracts for tokmd.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Project archetype analysis receipt DTOs.
//!
//! These contract types remain re-exported from the crate root to preserve
//! existing `tokmd_analysis_types::...` names.

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Archetype {
    pub kind: String,
    pub evidence: Vec<String>,
}