From 4c654fcb7899ac421323c5628e50bbfc7f36c92b Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Thu, 30 Oct 2025 17:26:06 +1100 Subject: [PATCH] feat: Add HTTPie to CLI agents --- curl.py | 2 +- tools.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/curl.py b/curl.py index 65693a5..e3a196c 100644 --- a/curl.py +++ b/curl.py @@ -1,5 +1,5 @@ from flask import render_template -from tools import error_response, getAddress, get_tools_data, getClientIP +from tools import getAddress, get_tools_data, getClientIP import os from functools import lru_cache import requests diff --git a/tools.py b/tools.py index a583152..5f09a6a 100644 --- a/tools.py +++ b/tools.py @@ -31,7 +31,8 @@ CLI_AGENTS = [ "curl", "hurl", "xh", - "Posting" + "Posting", + "HTTPie" ]