mirror of
https://github.com/jdiaz97/pdfx.git
synced 2025-10-06 05:37:02 +02:00
changed name
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -889,7 +889,7 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pdfy"
|
name = "pdfx"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pdfy"
|
name = "pdfx"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@ use std::env;
|
|||||||
use crate::extractor::retrieve;
|
use crate::extractor::retrieve;
|
||||||
|
|
||||||
pub async fn run_cli() -> Result<(), Box<dyn std::error::Error>> {
|
pub async fn run_cli() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let matches = Command::new("pdfy")
|
let matches = Command::new("pdfx")
|
||||||
.version("0.1.0")
|
.version("0.1.0")
|
||||||
.author("José Díaz <jose@boquila.org>")
|
.author("José Díaz <jose@boquila.org>")
|
||||||
.about("Extract information from PDF files using AI")
|
.about("Extract information from PDF files using AI")
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
let _ = pdfy::cli::run_cli().await;
|
let _ = pdfx::cli::run_cli().await;
|
||||||
// hide_window();
|
// hide_window();
|
||||||
// boquilahub::gui::run_gui();
|
// boquilahub::gui::run_gui();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user