network tab

This commit is contained in:
Face
2025-09-05 19:07:21 +03:00
parent 21b4f455c2
commit 4d16a16fe4
42 changed files with 1463 additions and 154 deletions

View File

@@ -30,7 +30,7 @@ async fn verify_dns_txt_record(domain: &str, expected_value: &str, client: &Gurt
});
let response = client
.post_json("gurt://localhost:8877/resolve-full", &request)
.post_json("gurt://dns.web/resolve-full", &request)
.await?;
if response.is_success() {

View File

@@ -12,7 +12,7 @@ struct Cli {
#[command(subcommand)]
command: Commands,
#[arg(long, default_value = "gurt://localhost:8877")]
#[arg(long, default_value = "gurt://dns.web")]
ca_url: String,
}