Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ jobs:

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
workspaces: google-patent-cli

- name: Check formatting
run: cargo fmt -- --check
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
workspaces: google-patent-cli

- name: Setup Chrome configuration
run: |
Expand Down Expand Up @@ -116,8 +114,6 @@ jobs:

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
workspaces: google-patent-cli

- name: Install cross
if: matrix.use_cross == true
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub mod cli;
pub mod core;
pub mod mcp;
6 changes: 1 addition & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
pub mod cli;
pub mod core;
pub mod mcp;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
cli::run().await
google_patent_cli::cli::run().await
}
Loading