flowlang/flowlang/string/
mod.rs

1pub mod split;
2pub mod length;
3pub mod trim;
4pub mod ends_with;
5pub mod starts_with;
6pub mod left;
7pub mod right;
8pub mod substring;
9use crate::rustcmd::*;
10pub fn cmdinit(cmds: &mut Vec<(String, Transform, String)>) {
11    cmds.push(("xzhnon181c9ab1ad6i1f".to_string(), substring::execute, "".to_string()));
12    cmds.push(("mptiwm181c9a760a9l1c".to_string(), right::execute, "".to_string()));
13    cmds.push(("xxivpu181c99f6947n19".to_string(), left::execute, "".to_string()));
14    cmds.push(("slhhql181c990bbeev19".to_string(), starts_with::execute, "".to_string()));
15    cmds.push(("huzwjx18186d0610cy1a".to_string(), ends_with::execute, "".to_string()));
16    cmds.push(("xmiqjx18152d5009ei1a".to_string(), trim::execute, "".to_string()));
17    cmds.push(("hghznv180e74646f6m18".to_string(), length::execute, "".to_string()));
18    cmds.push(("lyqkxo180e17082e0h8c".to_string(), split::execute, "".to_string()));
19}