rustify 0.7.0

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

#[derive(Debug, Endpoint, Serialize)]
struct Test {}

fn main() {}