i13-cli-history-file #14

Merged
kemitix merged 4 commits from i13-cli-history-file into main 2023-08-06 15:07:56 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d109d73751 - Show all commits

View file

@ -18,7 +18,7 @@ fn main() -> Result<()> {
site, site,
podal::Env { podal::Env {
network: NetworkEnv::default(), network: NetworkEnv::default(),
file: FileEnv::create(args.directory), file: FileEnv::create(args.downloads),
}, },
)?; )?;

View file

@ -6,5 +6,5 @@ pub struct Args {
/// This is also the directory where the subscription and history files are stored. /// This is also the directory where the subscription and history files are stored.
/// Defaults to the current directory /// Defaults to the current directory
#[arg(short, long, default_value = ".")] #[arg(short, long, default_value = ".")]
pub directory: String, pub downloads: String,
} }