hypershell 0.1.0

Modular DSL for shellscripting in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use cgp::prelude::*;
use reqwest::Client;

use crate::presets::HypershellPreset;

#[cgp_context(HypershellHttpComponents: HypershellPreset)]
#[derive(HasField)]
pub struct HypershellHttp {
    pub http_client: Client,
}