Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2022 Parthka. All rights reserved. MIT license.

use hyper::{Method, Uri};

// request
pub struct Req {
    pub uri: Uri,
    pub method: Method,
    pub body: String,
}

impl Req {}