9 lines
139 B
Rust
Raw Normal View History

2024-12-03 09:32:35 +02:00
use crate::config::NodeConfig;
pub mod json;
pub struct SequencerClient {
pub client: reqwest::Client,
pub config: NodeConfig,
}