openwhisk_client_rust/
lib.rs

1mod api;
2mod client;
3pub use api::{
4    Action, ActionList, Exec, HttpMethods, KeyValue, Limits, Rule, RuleResponse, Service, Trigger,
5};
6pub use client::{OpenWhisk, OpenwhiskClient, WskProperties};
7
8#[cfg(not(target_arch = "wasm32"))]
9pub use client::NativeClient;
10
11#[cfg(target_arch = "wasm32")]
12pub use client::WasmClient;