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
//! IPC Bridge for Go compiler integration
//! 
//! Connects wootype with the Go compiler via IPC/shared memory.

pub mod ipc;
pub mod protocol;
pub mod shim;

pub use ipc::{IpcBridge, BridgeConfig};
pub use protocol::{Message, Request, Response, TypeCheckContext, SourcePosition};
pub use shim::{GoCompilerShim, BuildResult};