chc-service 0.3.0

A local web server that implements the chc (Chain Head Coordinator) interface in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod chc;
mod cli;
mod error;
mod msgpack_utils;
mod routes;
pub mod telemetry;

pub use chc::{ChcService, RecordItem};
pub use cli::LocalChcServerCli;
pub use error::ChcServiceError;
pub use routes::GetRecordDataResult;