twilight_webhook/
lib.rs

1//! Caching and utility methods for Discord webhooks, a third party crate of the
2//! [Twilight ecosystem](https://api.twilight.rs)
3//!
4//! Refer to the modules' docs for more
5
6#![warn(clippy::cargo, clippy::nursery, clippy::pedantic)]
7
8/// The webhooks cache
9pub mod cache;
10/// Various utility functions for webhooks
11pub mod util;