thanix 0.1.0-alpha.3

A yaml-to-rust code generator for generating Rust code from yaml config files e.g. as found in openAPI.
1
2
3
4
5
6
7
8
9
use std::sync::Mutex;

pub struct ThanixClient {
    pub client: reqwest::blocking::Client,
    pub base_url: String,
    pub authentication_token: String,
}

pub static THANIX_CLIENT: Mutex<Option<ThanixClient>> = Mutex::new(None);