1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/rust-gcoap: Expose netif demo

This commit is contained in:
chrysn 2024-08-26 15:48:24 +02:00
parent c3724af35b
commit 7b78cc1f71

View File

@ -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);