wootype 0.1.0

Type System as a Service - Rust-powered Go type checker for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Go parser integration
//! 
//! Parses Go source code and populates the type universe.

pub mod ast;
pub mod importer;
pub mod converter;

pub use ast::GoAst;
pub use importer::{PackageImporter, ImportResult};
pub use converter::TypeConverter;