Skip to main content

hypershell/contexts/
http.rs

1use cgp::prelude::*;
2use reqwest::Client;
3
4use crate::presets::HypershellPreset;
5
6#[cgp_context(HypershellHttpComponents: HypershellPreset)]
7#[derive(HasField)]
8pub struct HypershellHttp {
9    pub http_client: Client,
10}