rustify 0.7.0

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

#[derive(Debug, Endpoint, Serialize)]
#[endpoint(path = "test/path", method = "TEST")]
struct Test {}

fn main() {}