4 个版本

0.1.4 2023 年 11 月 22 日
0.1.3 2023 年 11 月 3 日
0.1.2 2023 年 11 月 3 日
0.1.1 2023 年 10 月 2 日
0.1.0 2023 年 10 月 2 日

网页开发 中排名第 2152

Download history 73/week @ 2024-07-01

每月下载 73

MIT 许可证

7KB
114 代码行

ARPStore SDK

ARPStore API 的 SDK。

使用方法

use arpstore_sdk::Client;

const PRODUCT_CODE: &str = "the_product_code";

#[tokio::main]
async fn main() {
    let arp_client = Client::new("https://api.yourdomain.com", "your_subscription_key");
    let result = arp_client.is_valid_subscription(PRODUCT_CODE).await;
    match result {
        Ok(_) => println!("Subscription is valid"),
        Err(e) => println!("{e}"), // The error is a string from the API, or a reqwest error
    }
}

许可证

本项目采用 MIT 许可证 - 详细内容请参阅 LICENSE 文件

依赖项

~6–40MB
~614K SLoC