looprs-cli 0.5.1

looprs binary: interactive REPL and scriptable entrypoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::collections::HashMap;

#[allow(dead_code)]
pub fn turn_metadata_with_mode(mode: &str) -> HashMap<String, String> {
    let mut metadata = HashMap::new();
    metadata.insert("orchestration.mode".to_string(), mode.to_string());
    metadata
}

#[allow(dead_code)]
pub fn gui_turn_metadata() -> HashMap<String, String> {
    turn_metadata_with_mode("gui")
}