prefixload 0.1.1

S3 cli backup by file name prefix
Documentation
1
2
3
4
5
6
7
8
9
use crate::cli::{ConfigCommand};
use crate::error::Result;

/// Handles all config subcommands.
/// Ensures config file exists before dispatching to the relevant handler.
/// Returns an empty string as a placeholder output.
pub async fn run(cmd: ConfigCommand) -> Result<String> {
    Ok("I am config command".to_string())
}