Crate pkrs

source ·
Expand description

A very simple wrapper around the PluralKit api using reqwest and serde.

It closely follows the structure of the API itself, and as such the official API documentation is likely the best resource for now.

Examples

Creating a PkClient

use pkrs::client::PkClient;

let client = PkClient {
    token: my-token,
    user_agent: "my pk+rust project".to_string(),
    client: Default::default()
};

Modules