s3tui 0.5.0

Simple TUI application for multiple s3 account operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::PathBuf;
use clap::Parser;

use crate::utils::version;

#[derive(Parser, Debug)]
#[command(author, version = version(), about)]
pub struct Cli {
    /// Path to the credentials file
    #[arg(long)]
    pub creds_file: Option<PathBuf>,
}