wot_serve/
lib.rs

1//! Web of Things application server
2//!
3//! Provides all the building blocks to serve [Web Of Things](https://www.w3.org/WoT/) Things.
4
5pub mod advertise;
6#[doc(hidden)]
7pub mod hlist;
8pub mod servient;
9
10pub use servient::Servient;