ggen-core 26.5.19

Core graph-aware code generation engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Reverse synchronization - Code to RDF extraction
//!
//! This module provides functionality to extract service definitions from source code
//! in multiple languages (Rust, Elixir, Go) and convert them into RDF format for
//! integration with the ggen ontology system.

pub mod ast_extractor;

pub use ast_extractor::{
    convert_to_rdf, extract_elixir_genserver, extract_go_service, extract_rust_service, Field,
    Language, Method, ServiceDef,
};