mirror of
https://github.com/eRgo35/lyra.git
synced 2026-02-04 12:26:10 +01:00
9 lines
168 B
Rust
9 lines
168 B
Rust
use poise::serenity_prelude::prelude::TypeMapKey;
|
|
use reqwest::Client as HttpClient;
|
|
|
|
pub struct HttpKey;
|
|
|
|
impl TypeMapKey for HttpKey {
|
|
type Value = HttpClient;
|
|
}
|