gremlin-cli 0.1.0

A minimal Rust CLI for Apache TinkerPop™
1
2
3
4
5
6
7
8
use gremlin_client::GKey;

pub fn fmt(gkey: &GKey) -> String {
    match gkey {
        GKey::String(s) => s.to_string(),
        _ => todo!(),
    }
}