ntfy 0.9.1

Library for sending notifications over ntfy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2022 Yuki Kishimoto
// Distributed under the MIT software license

//! Prelude

#![allow(unknown_lints)]
#![allow(ambiguous_glob_reexports)]
#![doc(hidden)]

pub use url::Url;

pub use crate::auth::*;
#[cfg(any(feature = "async-dispatcher", feature = "blocking-dispatcher"))]
pub use crate::dispatcher::*;
pub use crate::payload::*;
#[cfg(any(feature = "async-subscriber", feature = "blocking-subscriber"))]
pub use crate::subscriber::*;
pub use crate::*;