Crate unm_engine_joox

source ·
Expand description

UNM Engine: Joox

You may need to register a Joox account, obtain its cookie and fill the cookie to the joox:cookie config.

You can configure the cookie in the ctx.config field. You can build a ctx.config with unm_types::config::ConfigManagerBuilder, for example:

use unm_types::{ContextBuilder, config::ConfigManagerBuilder};

let config = ConfigManagerBuilder::new()
    .set("joox:cookie", r#"wmid=<your_wmid>; session_key=<your_session_key>;"#)
    .build();

let context = ContextBuilder::default()
    .config(config)
    .build();

Structs

Constants