Skip to content

Commit d01facc

Browse files
committed
refactor config
1 parent fa67eb3 commit d01facc

3 files changed

Lines changed: 396 additions & 212 deletions

File tree

β€Žros-z/examples/zenoh_router.rsβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ fn main() {
5555
format!("tcp/[::]:{}", args.port)
5656
};
5757

58-
println!("πŸš€ ROS-Z Router (rmw_zenoh_cpp compatible)");
59-
println!("πŸ“‘ Listening: {}", listen_endpoint);
60-
println!("πŸ’‘ Run your ROS-Z examples in other terminals now!");
61-
println!(" Example: cargo run --example demo_nodes_talker");
62-
println!("πŸ›‘ Press Ctrl-C to stop");
58+
println!("ROS-Z Router (rmw_zenoh_cpp compatible)");
59+
println!("Listening: {}", listen_endpoint);
60+
println!("Run your ROS-Z examples in other terminals now!");
61+
println!("Example: cargo run --example demo_nodes_talker");
62+
println!("Press Ctrl-C to stop");
6363
println!();
6464

6565
// Open Zenoh session in router mode
@@ -69,7 +69,7 @@ fn main() {
6969

7070
// Print session info
7171
let zid = session.zid();
72-
println!("βœ… Router started with ZID: {}", zid);
72+
println!("Router started with ZID: {}", zid);
7373
println!();
7474

7575
// Create runtime for async operations
@@ -82,7 +82,7 @@ fn main() {
8282
});
8383

8484
println!();
85-
println!("πŸ‘‹ Router shutting down...");
85+
println!("Router shutting down...");
8686

8787
// Session will be closed when dropped
8888
drop(session);

0 commit comments

Comments
Β (0)