Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add command line URL queue #414

Merged

Conversation

Femi-lawal
Copy link
Contributor

@Femi-lawal Femi-lawal commented Jan 15, 2024

Fixes issue

Fixes #410

Changes proposed

  • Introduced a new command add in the CLI to add URLs to a local text file for batch processing.
  • Implemented a list command to display all the URLs currently stored in the text file.
  • Implemented a remove command to remove the URL at the specified line number.
  • Implemented a get command to start downloading the contents of the text file.

Check List (Check all the applicable boxes)

  • My code follows the code style of this project.
  • My change requires changes to the documentation.
  • I have updated the documentation accordingly.
  • This PR does not contain plagiarized content.
  • The title of my pull request is a short description of the requested changes.

Screenshots

Help:
image

Add:
image

Remove:
image

List:
image

Get:
image

Summary by CodeRabbit

  • New Features
    • Enhanced CLI functionality to manage URLs, including addition, listing, removal, and batch downloading from a YAML file.

Copy link

vercel bot commented Jan 15, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
drifty ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 6, 2024 10:13am

Copy link
Contributor

coderabbitai bot commented Jan 15, 2024

Walkthrough

The recent update to the Drifty CLI application enhances its functionality by allowing users to manage URLs through a command-line interface. This update enables users to add, list, remove URLs from a download queue, and perform batch downloads, leveraging a YAML file for efficient data storage and retrieval.

Changes

File Path Change Summary
CLI/src/main/java/main/Drifty_CLI.java Updated to manage URLs via CLI, including addition, removal, listing, and batch downloading using a YAML file.
CLI/src/main/java/cli/support/Constants.java Updated with new flags and messages for CLI operations.
CLI/src/main/java/cli/utils/Utility.java Updated with new imports, static imports, and a method for YAML parsing initialization.

Assessment against linked issues

Objective Addressed Explanation
Add links to a download queue via CLI (#410)
List URLs in the queue (#410)
Remove specific URLs from the queue by line number (#410)
Batch download URLs from the queue (#410)

Poem

🐇 In the CLI's realm, where URLs flow,
Drifty now manages them with a new glow.
Add, list, remove, a queue's delight,
Batch download awaits, in the code's flight.
🌟 With each command, Drifty's power shows,
Through lines of code, where efficiency grows. 🌟


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the App 💻 Issues/Pull Requests which update Drifty Application Code label Jan 15, 2024
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah! You did it 🎉 Now, Relax 😉, Grab a drink ☕, and wait for the maintainers to check your contributions. Meanwhile, you can discuss on other issues and solve them 😀. Thank You 😃!

Meanwhile you can also discuss about the project in our Discord Server 😀

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 8ec2bf0 and 7801a02.
Files selected for processing (2)
  • CLI/src/main/java/cli/support/Constants.java (1 hunks)
  • CLI/src/main/java/main/Drifty_CLI.java (4 hunks)
Additional comments: 10
CLI/src/main/java/cli/support/Constants.java (1)
  • 9-12: The addition of the new string constants ADD_FLAG, REMOVE_FLAG, LIST_FLAG, and GET_FLAG is consistent with the PR objectives to support new CLI commands.
CLI/src/main/java/main/Drifty_CLI.java (9)
  • 43-43: The new constant URL_LIST_FILE has been correctly defined to specify the file used for storing the URL queue.
  • 65-86: The ADD_FLAG case in the main method correctly checks for a valid URL, adds it to the file, and then lists the URLs.
  • 87-90: The LIST_FLAG case in the main method correctly triggers the listing of URLs.
  • 91-105: The REMOVE_FLAG case in the main method correctly parses the line number and triggers the removal of the corresponding URL.
  • 106-111: The GET_FLAG case in the main method correctly triggers the batch download process.
  • 240-259: The listUrls method correctly reads the URL list from the file and prints it to the console.
  • 261-284: The removeUrl method correctly removes a URL from the list based on the provided index.
  • 287-293: The addUrlToFile method correctly appends a new URL to the end of the URL list file.
  • 296-361: The batchTextDownloader method correctly reads URLs from the file and processes them for downloading.

@SaptarshiSarkar12 SaptarshiSarkar12 added the feature ✨ New feature request or addition label Jan 15, 2024
@SaptarshiSarkar12
Copy link
Owner

@Femi-lawal Awesome work 👏. Some minor changes are required. Will let you know tomorrow 😁.
Thank you for the PR!

Copy link
Contributor

❌ Linting errors found!

@Femi-lawal Please fix the following errors:

CLI/src/main/java/main/Drifty_CLI.java:80:30: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:96:34: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:80:30: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:96:34: Control variable 'i' is modified. [ModifiedControlVariable]

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 7801a02 and ac5bd97.
Files selected for processing (1)
  • CLI/src/main/java/main/Drifty_CLI.java (4 hunks)
Files skipped from review as they are similar to previous changes (1)
  • CLI/src/main/java/main/Drifty_CLI.java

Copy link
Owner

@SaptarshiSarkar12 SaptarshiSarkar12 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Femi-lawal Please make the following changes.
I am sorry for the delay in reviewing your PR. I was very busy the last couple of days.
Appreciate your patience 😁 👏.
If you need any further information, please let me know.

CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
@Femi-lawal
Copy link
Contributor Author

@Femi-lawal I think it would be better to add the terminate code in the method so that we can use exit code 1 if any error occurs, else 0. What do you think?

Exit codes are very important for any CLI application and must not always be zero (which means successful execution).

Sorry, in which method?

In listUrls() method I suppose. You just added a commit to terminate after the listUrls method exits. So, I asked you to add the terminate code with the correct status code according to the execution of the method block (successful or throwing an error).

I've made the change

@SaptarshiSarkar12
Copy link
Owner

@Femi-lawal Sorry for the delay in reviewing this PR. I was busy the last week. I will review this now.

Copy link
Owner

@SaptarshiSarkar12 SaptarshiSarkar12 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Femi-lawal Please make the three requested changes along with the below mentioned issue. Then, we can have this PR merged 🎉!

  • If only 1 url exist, the print message does not sound good as shown below 👇. Can you please fix this? Something like this 👇 can be added.
    There's only one URL in the list!
    Would you like to remove it? (Y/N) : 
    image

CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
@SaptarshiSarkar12
Copy link
Owner

@Femi-lawal Please make the requested changes 😁.

@Femi-lawal
Copy link
Contributor Author

Femi-lawal commented Apr 21, 2024

@Femi-lawal Please make the three requested changes along with the below mentioned issue. Then, we can have this PR merged 🎉!

  • If only 1 url exist, the print message does not sound good as shown below 👇. Can you please fix this? Something like this 👇 can be added.

    There's only one URL in the list!
    Would you like to remove it? (Y/N) : 
    

    image

@SaptarshiSarkar12
Currently if you intensionally try to add a URL with white spaces it throws an error, which I think is fine
image

I think the amount of code required just to give a better experience for this niche example is unjustified
image

The error handling for Utility.parseStringToInt() doesn't work well with the existing validation, which works fine.
image

Unfortunately, too much time has passed, and I am very busy now. I can't carve out any more time to make significant code changes to the pull request and test them.
If there are any changes you think are of utmost importance, please do you mind implementing them so the pull request can be merged?
I apologize for the inconvenience, thank you.

@SaptarshiSarkar12
Copy link
Owner

@Femi-lawal It's fine. No problem.
I can make the last required changes and merge this PR.
Thank you for your contributions 😄!

Copy link
Contributor

github-actions bot commented May 4, 2024

❌ Linting errors found!

@Femi-lawal Please fix the following errors:

CLI/src/main/java/main/Drifty_CLI.java:92:30: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:107:31: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:135:31: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:153:30: Control variable 'i' is modified. [ModifiedControlVariable]
CLI/src/main/java/main/Drifty_CLI.java:83:30: Control variable 'i' is modified. [ModifiedControlVariable]

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 8

Out of diff range and nitpick comments (1)
CLI/src/main/java/main/Drifty_CLI.java (1)

56-57: The use of a constant for the YAML filename is good for maintainability. However, consider externalizing such constants to a configuration file or environment variables for easier management across different environments.

CLI/src/main/java/main/Drifty_CLI.java Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

Out of diff range and nitpick comments (1)
CLI/src/main/java/main/Drifty_CLI.java (1)

Line range hint 341-456: Handle potential YAML parsing exceptions more robustly.

+ try {
    Yaml yamlParser = Utility.getYamlParser();
    messageBroker.msgLogInfo("Trying to load YAML data file (" + batchDownloadingFile + ") ...");
    try (FileInputStream yamlInputStream = new FileInputStream(batchDownloadingFile); InputStreamReader yamlDataFile = new InputStreamReader(yamlInputStream)) {
        Map<String, List<String>> data = yamlParser.load(yamlDataFile);
        messageBroker.msgLogInfo("YAML data file (" + batchDownloadingFile + ") loaded successfully");
        // Additional logic here...
    } catch (IOException e) {
        messageBroker.msgDownloadError("Failed to load YAML data file (" + batchDownloadingFile + ") ! " + e.getMessage());
    } catch (YAMLException e) {
        String errorMessage = e.getMessage();
        if (errorMessage.contains("duplicate key")) {
            messageBroker.msgBatchError("Duplicate keys are not allowed in the YAML file!");
        } else if (errorMessage.contains("recursive key")) {
            messageBroker.msgBatchError("Recursive keys are not allowed in the YAML file!");
        } else {
            messageBroker.msgBatchError("An unknown error occurred while parsing the YAML file! " + errorMessage);
        }
    }
+ } catch (Exception e) {
+     messageBroker.msgBatchError("An unexpected error occurred while processing the YAML file: " + e.getMessage());
+     Environment.terminate(1);
+ }

This change adds a general exception handler to catch any unexpected exceptions that may occur during the YAML file processing, ensuring that all types of errors are handled gracefully.

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between f17ac92 and 80b376e.
Files selected for processing (4)
  • .github/linters/sun_checks.xml (1 hunks)
  • CLI/src/main/java/cli/support/Constants.java (2 hunks)
  • CLI/src/main/java/cli/utils/Utility.java (2 hunks)
  • CLI/src/main/java/main/Drifty_CLI.java (12 hunks)
Files skipped from review due to trivial changes (1)
  • .github/linters/sun_checks.xml
Additional Context Used
Learnings (2)
Common
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:795-816
Timestamp: 2024-05-06T06:45:34.696Z
Learning: Enhancement of the URL normalization logic in the `addUrlToFile` method of `Drifty_CLI.java` is planned to be addressed later as per user SaptarshiSarkar12's acknowledgment.
CLI/src/main/java/main/Drifty_CLI.java (2)
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:122-140
Timestamp: 2024-05-06T06:07:27.386Z
Learning: SaptarshiSarkar12 prefers the current implementation of the `REMOVE_FLAG` case in `Drifty_CLI.java` for its clarity and readability, despite suggestions to reduce nesting.
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:795-816
Timestamp: 2024-05-06T06:45:34.696Z
Learning: Enhancement of the URL normalization logic in the `addUrlToFile` method of `Drifty_CLI.java` is planned to be addressed later as per user SaptarshiSarkar12's acknowledgment.
Additional comments not posted (4)
CLI/src/main/java/cli/support/Constants.java (2)

9-12: Constants for CLI flags are well-defined and follow a consistent naming convention.


23-23: The confirmation message for removing all URLs is clear and user-friendly.

CLI/src/main/java/cli/utils/Utility.java (2)

7-9: Imports for YAML processing are correctly added.


111-118: The method getYamlParser is well-implemented with appropriate settings to avoid common YAML parsing issues like duplicate keys and recursive keys.

CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
…n only when links queue is used to avoid throwing errors everytime
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between 80b376e and c9c5bad.
Files selected for processing (1)
  • CLI/src/main/java/main/Drifty_CLI.java (11 hunks)
Additional Context Used
Learnings (2)
Common
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:795-816
Timestamp: 2024-05-06T06:45:34.696Z
Learning: Enhancement of the URL normalization logic in the `addUrlToFile` method of `Drifty_CLI.java` is planned to be addressed later as per user SaptarshiSarkar12's acknowledgment.
CLI/src/main/java/main/Drifty_CLI.java (1)
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:795-816
Timestamp: 2024-05-06T06:45:34.696Z
Learning: Enhancement of the URL normalization logic in the `addUrlToFile` method of `Drifty_CLI.java` is planned to be addressed later as per user SaptarshiSarkar12's acknowledgment.
Additional comments not posted (19)
CLI/src/main/java/main/Drifty_CLI.java (19)

12-12: Consider handling potential exceptions from SafeConstructor as it might throw runtime exceptions if the YAML structure is incorrect.


71-74: Ensure proper error handling for missing filename argument.


80-84: Ensure proper error handling for missing download directory argument.


92-103: Ensure that the add command correctly handles multiple URLs and provides appropriate feedback when no URLs are provided.


105-108: Ensure that the list command correctly sets the YAML file path and lists URLs.


109-120: Ensure that the get command handles batch downloading correctly, checks for empty YAML, and removes all URLs after processing.


121-140: Ensure that the remove command handles the removal of specific URLs or all URLs correctly and provides appropriate feedback when no line number is provided.


Line range hint 142-155: Ensure that the batch download functionality correctly handles file path validation and processes the YAML file correctly.


Line range hint 341-456: Review the batch downloading logic to ensure it handles YAML parsing errors and file I/O operations robustly.


617-644: Improve URL normalization logic to handle more edge cases.


647-670: Ensure that the YAML file existence check and creation logic are robust and provide clear feedback.


672-678: Ensure that the method correctly identifies empty YAML files.


680-704: Review the YAML data loading logic to ensure it handles file existence, reads data correctly, and manages YAML parsing errors.


706-738: Review the YAML data saving logic to ensure it handles file backup creation, data writing, and error recovery robustly.


740-756: Ensure that the listUrls method correctly loads data, checks for emptiness, and lists URLs robustly.


758-793: Review the removeUrl method to ensure it handles URL removal based on indices correctly and saves the updated YAML data.


795-819: Review the removeAllUrls method to ensure it handles the deletion of all URLs from the YAML file robustly and provides appropriate feedback.


822-844: Review the addUrlToFile method to ensure it validates URLs, normalizes them, checks for duplicates, and saves them correctly.


847-853: Ensure that the method for setting the YAML file path handles path validation and error feedback correctly.

CLI/src/main/java/main/Drifty_CLI.java Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

Out of diff range and nitpick comments (2)
CLI/src/main/java/main/Drifty_CLI.java (2)

Line range hint 339-454: Improve error handling in the batchDownloader method to catch specific YAML parsing exceptions.

- } catch (YAMLException e) {
+ } catch (YAMLException | IOException e) {

Adding IOException to the catch block ensures that all potential I/O errors during YAML parsing are handled appropriately.


707-738: Ensure atomicity in saveYamlData to prevent data loss.

Consider implementing a transaction-like mechanism or using a temporary file during the write operation to ensure that data is not lost if an error occurs during the file write process. This approach helps in maintaining data integrity.

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between c9c5bad and 50ee655.
Files selected for processing (1)
  • CLI/src/main/java/main/Drifty_CLI.java (11 hunks)
Additional Context Used
Learnings (2)
Common
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:795-816
Timestamp: 2024-05-06T06:45:34.696Z
Learning: Enhancement of the URL normalization logic in the `addUrlToFile` method of `Drifty_CLI.java` is planned to be addressed later as per user SaptarshiSarkar12's acknowledgment.
CLI/src/main/java/main/Drifty_CLI.java (1)
User: SaptarshiSarkar12
PR: SaptarshiSarkar12/Drifty#414
File: CLI/src/main/java/main/Drifty_CLI.java:795-816
Timestamp: 2024-05-06T06:45:34.696Z
Learning: Enhancement of the URL normalization logic in the `addUrlToFile` method of `Drifty_CLI.java` is planned to be addressed later as per user SaptarshiSarkar12's acknowledgment.
Additional comments not posted (1)
CLI/src/main/java/main/Drifty_CLI.java (1)

110-120: Ensure proper error handling when the YAML file is empty.

This script checks if the isEmptyYaml method is called and handled properly in the scenario where the YAML file is empty, ensuring that the program exits gracefully with an appropriate error message.

CLI/src/main/java/main/Drifty_CLI.java Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Show resolved Hide resolved
CLI/src/main/java/main/Drifty_CLI.java Show resolved Hide resolved
Copy link
Owner

@SaptarshiSarkar12 SaptarshiSarkar12 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Femi-lawal Looks good to merge 👍.
Thanks for contributing 🚀 🚀.
You may join our Discord server - https://discord.gg/DeT4jXPfkG to get updates about the project.

@SaptarshiSarkar12 SaptarshiSarkar12 merged commit cade04f into SaptarshiSarkar12:master May 6, 2024
27 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
App 💻 Issues/Pull Requests which update Drifty Application Code feature ✨ New feature request or addition
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE] Command Line URL Queue
2 participants