1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Liteguard SDK for Rust
//!
//! ```no_run
//! use liteguard::{Client, ClientOptions, Options, Properties};
//!
//! #[tokio::main]
//! async fn main() {
//! let client = Client::init("pct-...", ClientOptions {
//! environment: Some("production".into()),
//! ..Default::default()
//! }).await.unwrap();
//!
//! let scope = client.create_scope(
//! Properties::new()
//! .set("user_id", "user-123")
//! .set("plan", "pro")
//! );
//!
//! if scope.is_open_with_options("payments.checkout", &Options {
//! properties: Properties::new(),
//! fallback: None,
//! disable_measurement: false,
//! }) {
//! // feature is enabled
//! }
//! }
//! ```
pub use ;
pub use Execution;
pub use ;