sledoview 1.1.1

A CLI tool for viewing and managing SLED database files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::Parser;
use std::path::PathBuf;

#[derive(Parser)]
#[command(
    name = "sledoview",
    about = "A CLI tool for viewing and managing SLED databases",
    version,
    author = "Your Name <your.email@example.com>"
)]
pub struct Args {
    /// Path to the SLED database file
    #[arg(help = "Path to the SLED database file")]
    pub database_path: PathBuf,
}