xref: /webrtc/mdns/src/lib.rs (revision ffe74184)
1 #![warn(rust_2018_idioms)]
2 #![allow(dead_code)]
3 
4 pub mod config;
5 pub mod conn;
6 mod error;
7 pub mod message;
8 
9 pub use error::Error;
10