mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-24 19:23:22 +00:00
9 lines
139 B
Rust
9 lines
139 B
Rust
|
|
use crate::config::NodeConfig;
|
||
|
|
|
||
|
|
pub mod json;
|
||
|
|
|
||
|
|
pub struct SequencerClient {
|
||
|
|
pub client: reqwest::Client,
|
||
|
|
pub config: NodeConfig,
|
||
|
|
}
|