From 7b78cc1f71e1f9f49aa55fb9e2eaaeab439fd3bd Mon Sep 17 00:00:00 2001 From: chrysn Date: Mon, 26 Aug 2024 15:48:24 +0200 Subject: [PATCH] examples/rust-gcoap: Expose netif demo --- examples/rust-gcoap/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/rust-gcoap/src/lib.rs b/examples/rust-gcoap/src/lib.rs index 344432f0f8..a23dfd2e31 100644 --- a/examples/rust-gcoap/src/lib.rs +++ b/examples/rust-gcoap/src/lib.rs @@ -26,6 +26,7 @@ fn main() { .below(&["led"], riot_coap_handler_demos::led::all_leds()) .below(&["vfs"], riot_coap_handler_demos::vfs::vfs("")) .below(&["saul"], riot_coap_handler_demos::saul::SaulHandler::new(&["saul"])) + .below(&["netif"], riot_coap_handler_demos::netif::netif()) .with_wkc() ; let mut handler = riot_wrappers::coap_handler::v0_2::GcoapHandler(handler);