rustify 0.7.0

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

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

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

fn main() {}