rudof_cli 0.3.8

RDF data shapes implementation in Rust
1
2
3
4
5
6
7
8
9
10
11
use crate::cli::parser::CommonArgsNoBackend;
use clap::Args;

/// Arguments for the `config` command
///
/// Dumps the effective configuration that rudof is currently using as TOML
#[derive(Debug, Clone, Args)]
pub struct ConfigArgs {
    #[command(flatten)]
    pub common: CommonArgsNoBackend,
}