grpc_gateway 0.1.4

A GRPC Gateway which handle the http request and convert into GRPC
Documentation
1
2
3
4
5
6
7
8
9
use reqwest::StatusCode;

#[derive(Debug)]
pub struct Response {
    pub message: String,
    pub status: String,
    pub status_code: StatusCode,
    pub data: Option<serde_json::Value>,
}