zeroconf 0.18.0

cross-platform library that wraps ZeroConf/mDNS implementations like Bonjour or Avahi
Documentation
1
2
3
4
5
6
7
8
9
10
use std::sync::Once;

static INIT: Once = Once::new();

pub(crate) fn setup() {
    INIT.call_once(env_logger::init);
}

mod event_loop_test;
mod service_test;