gopher-mcp-rust 0.1.2-11

Rust SDK for Gopher Orch - AI Agent orchestration framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! FFI bindings to native Gopher libraries.
//!
//! This module provides safe Rust bindings to:
//! - `gopher-orch` - AI agent orchestration library
//! - `gopher-auth` - OAuth/JWT authentication library (optional, requires `auth` feature)

pub mod orch;

#[cfg(feature = "auth")]
pub mod auth;

// Re-export orch types at module level for backward compatibility
pub use orch::*;