papermc 0.1.0

PaperMc client, generated from the OpenAPI spec.
Documentation
1
2
3
4
5
6
7
8
9
#![allow(unused_imports)]
use papermc::PaperMcClient;
use papermc::model::*;
#[tokio::main]
async fn main() {
    let client = PaperMcClient::from_env();
    let response = client.projects().await.unwrap();
    println!("{:#?}", response);
}