Skip to content

Commit

Permalink
Fix compilation error after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jasta committed Jul 30, 2023
1 parent 49f1f6f commit d62cce7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions coap-server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
//! Robust, ergonomic CoAP server in Rust.
//!
//! # Examples
//! ```no_run
//! ```no_compile
//! use std::net::SocketAddr;
//!
//! use coap_server::app::{CoapError, Request, Response};
//! use coap_server::{app, CoapServer, FatalServerError, UdpTransport};
//! use coap_server::{app, CoapServer, FatalServerError};
//! use coap_server_tokio::transport::udp::UdpTransport;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), FatalServerError> {
Expand Down

0 comments on commit d62cce7

Please sign in to comment.