mod.rs 234 Bytes
Newer Older
1
2
3
4
5
6
7
8
//! gRPC client module for communicating with SGLang scheduler
//!
//! This module provides a gRPC client implementation for the SGLang router.

pub mod client;

// Re-export the client
pub use client::{proto, SglangSchedulerClient};