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
12
13
//! gRPC API for AI Agent access
//! 
//! Provides high-performance API for Cursor, Claude Code, etc.

pub mod server;
pub mod service;
pub mod grpc;
pub mod websocket;

pub use server::{ApiServer, ApiConfig};
pub use service::TypeService;
pub use grpc::GrpcTypeService;
pub use websocket::WebSocketServer;