mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +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,
|
||
|
|
}
|