rustified 0.5.3

A Rust library for interacting with HTTP API endpoints.
Documentation
1
2
3
4
5
6
7
8
9
use rustified::endpoint::Endpoint;
use rustified_derive::Endpoint;
use serde::Serialize;

#[derive(Debug, Endpoint, Serialize)]
#[endpoint(method = "POST")]
struct Test {}

fn main() {}