openwhisk-client-rust 0.1.7

OpenWhisk Client written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod api;
mod client;
pub use api::{
    Action, ActionList, Exec, HttpMethods, KeyValue, Limits, Rule, RuleResponse, Service, Trigger,
};
pub use client::{OpenWhisk, OpenwhiskClient, WskProperties};

#[cfg(not(target_arch = "wasm32"))]
pub use client::NativeClient;

#[cfg(target_arch = "wasm32")]
pub use client::WasmClient;