Crate ej_requests

Crate ej_requests 

Source
Expand description

HTTP client library for making API requests.

This library provides a simplified wrapper around reqwest for making HTTP requests with JSON serialization/deserialization support.

§Examples

use ej_requests::ApiClient;

let client = ApiClient::new("https://api.example.com");
let data: serde_json::Value = client.get("users").await;

Structs§

ApiClient
HTTP client for making API requests with JSON support.