wootype 0.2.1

Blazing-fast Go type system service —— Vibe Coding toolchain
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 converter;
pub mod importer;

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