1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! caching and utility things for discord webhooks, a third party crate of the
//! twilight ecosystem
//!
//! refer to the modules' docs for more
#![warn(clippy::cargo, clippy::nursery, clippy::pedantic, clippy::restriction)]
#![allow(
clippy::blanket_clippy_restriction_lints,
clippy::implicit_return,
clippy::exhaustive_enums,
clippy::missing_inline_in_public_items,
clippy::single_char_lifetime_names,
clippy::pattern_type_mismatch
)]
/// the webhooks cache
pub mod cache;
/// various utility functions for webhooks
pub mod util;