|
|
|
@@ -1,4 +1,4 @@ |
|
|
|
use dora_node_api::{self, config::DataId, DoraNode}; |
|
|
|
use dora_node_api::{self, core::config::DataId, DoraNode}; |
|
|
|
use std::error::Error; |
|
|
|
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> { |
|
|
|
@@ -7,7 +7,7 @@ fn main() -> Result<(), Box<dyn Error>> { |
|
|
|
|
|
|
|
while let Ok(input) = inputs.recv() { |
|
|
|
match input.id.as_str() { |
|
|
|
other => eprintln!("Ignoring unexpected input `{other}`"), |
|
|
|
other => eprintln!("Received input `{other}`"), |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|