1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::cli_wrapper;
use clap::ValueEnum;
use rudof_lib::formats::ResultServiceFormat;
use std::fmt::{Display, Formatter, Result};

cli_wrapper!(
    ResultServiceFormatCli,
    ResultServiceFormat,
    {
        Internal,
        Mie,
        Json,
    }
);