gremlin-cli 0.1.0

A minimal Rust CLI for Apache TinkerPop™
1
2
3
4
5
6
7
use super::glist;
use anyhow::Result;
use gremlin_client::Path;

pub fn fmt(path: &Path) -> Result<String> {
    glist::fmt(path.objects())
}