This commit is contained in:
JMARyA 2025-05-28 09:55:19 +02:00
parent 1429089795
commit 45fd5fa2f2

View file

@ -11,7 +11,7 @@ fn main() {
.short('b') .short('b')
.long("browser") .long("browser")
.value_name("BROWSER") .value_name("BROWSER")
.help("The browser to extract cookies from [firefox / chromium / chrome]"), .help("The browser to extract cookies from [firefox / chromium / chrome / edge]"),
) )
.arg( .arg(
Arg::new("domains") Arg::new("domains")
@ -35,6 +35,7 @@ fn main() {
"firefox" => rookie::firefox(domains).unwrap(), "firefox" => rookie::firefox(domains).unwrap(),
"chromium" => rookie::chromium(domains).unwrap(), "chromium" => rookie::chromium(domains).unwrap(),
"chrome" => rookie::chrome(domains).unwrap(), "chrome" => rookie::chrome(domains).unwrap(),
"edge" => rookie::edge(domains).unwrap(),
_ => { _ => {
std::process::exit(1); std::process::exit(1);
} }