nodeless-rs

Crates.ionodeless-rs
lib.rsnodeless-rs
version0.1.0
sourcesrc
created_at2023-04-17 23:09:28.601305
updated_at2023-04-17 23:09:28.601305
descriptionRust SDK for the Nodeless API
homepage
repositoryhttps://github.com/nodeless-io/nodeless-rs
max_upload_size
id841944
size32,749
(thesimplekid)

documentation

README

Quickstart

use std::str::FromStr;

use nodeless_rs::paywall::Paywall;
use nodeless_rs::webhook::{CreateWebhook, WebHookType, Webhook, WebhookEvent, WebhookStatus};
use url::Url;

use nodeless_rs::store::InvoiceRequest;
use nodeless_rs::Nodeless;

#[tokio::main]
async fn main() {
    let api_key = "<api key>";

    let nodeless = Nodeless::new(api_key, None).unwrap();

    let _status = nodeless.get_server_status().await.unwrap();
}

Status

Implementation status of full API support:

Paywall Requests

Paywall Webhooks

Paywalls

Server Info

Store Invoices

Store Webhooks

Stores

Transactions

Commit count: 8

cargo fmt