Skip to main content

agentic_reality/inventions/
coherence_engine.rs

1//! Invention implementation.
2
3/// Invention marker — implementation details are in the types and engine modules.
4pub struct Invention;
5
6impl Invention {
7    pub fn name() -> &'static str {
8        env!("CARGO_PKG_NAME")
9    }
10}