storekit-rs 0.2.1

Safe Rust bindings for Apple's StoreKit framework — in-app purchases and transaction streams on macOS
Documentation
1
2
3
4
5
6
7
8
use storekit::Refund;

fn main() {
    println!(
        "refund request result: {:?}",
        Refund::begin_for_transaction_id(0)
    );
}