Skip to content

mrcingo/http.rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Http 🔎

Make very basic HTTP requests. Simple project only to add up to the protfolio.

How it works? ⚙️

use http::request::Request
use http::request::get;

async fn main() {
    let request: Request = get("example.com", "/api/webhooks/test/test")
        .header("Authentication", "Token ...")
        .send().await?;
    let data_jsonified: request.json();
}

Support 🍃

Fork the project and send a pull request. If the content inside the request is usefull and helps the project will be added.

About

Very basic HTTP library for making requests.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages