matrixcode-core 0.4.40

MatrixCode Agent Core - Pure logic, no UI
Documentation
1
2
3
4
5
6
7
8
9
10
//! JSON-RPC 2.0 Protocol Types
//!
//! This module implements the JSON-RPC 2.0 specification types.
//! Reference: https://www.jsonrpc.org/specification

mod error;
mod types;

pub use error::*;
pub use types::*;