gproxy-protocol 2.2.3

GPROXY protocol types and endpoint metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Protocol wire types and shared protocol taxonomy.

pub mod claude;
pub mod endpoint;
pub(crate) mod extensible;
pub mod gemini;
pub mod openai;
pub mod operation;

pub use endpoint::*;
pub use operation::{
    ContentGenerationKind, Endpoint, HttpMethod, Operation, OperationGroup, OperationKey,
    OperationKind, Provider,
};