asimov_server/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3pub use tokio::{net::ToSocketAddrs, task::JoinHandle};
4pub use tokio_util::sync::CancellationToken;
5
6#[cfg(feature = "http")]
7pub mod http;
8
9#[cfg(feature = "persistence")]
10pub mod persistence;
11
12#[cfg(feature = "mdns")]
13pub mod mdns;
14
15#[cfg(feature = "ssdp")]
16pub mod ssdp;