feat: node core strucutres added

This commit is contained in:
Oleksandr Pravdyvyi
2024-12-03 09:32:35 +02:00
parent 91786d6b7e
commit a80d198e88
10 changed files with 448 additions and 16 deletions
+1
View File
@@ -0,0 +1 @@
+8
View File
@@ -0,0 +1,8 @@
use crate::config::NodeConfig;
pub mod json;
pub struct SequencerClient {
pub client: reqwest::Client,
pub config: NodeConfig,
}