rudof_cli 0.3.17

RDF and Knowledge Graphs processing tool
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::cli_wrapper;
use clap::ValueEnum;
use rudof_viz::VizEngine;
use std::fmt::{Display, Formatter, Result};

cli_wrapper!(
    VizEngineCli,
    VizEngine,
    {
        PlantUml,
        GraphViz
    }
);