feat: Set user agent #15

Merged
Dreaded_X merged 1 commits from feat/user_agent into main 2026-04-06 05:27:13 +00:00
Showing only changes of commit 9c681c4b03 - Show all commits
+9 -1
View File
@@ -11,7 +11,15 @@ where
let path = get_talos_path().join("schematics").join(name);
let content = std::fs::read_to_string(path).unwrap().trim().to_owned();
let client = reqwest::blocking::Client::new();
let client = reqwest::blocking::ClientBuilder::new()
.user_agent(format!(
"{}/{}",
std::env!("CARGO_PKG_NAME"),
std::env!("CARGO_PKG_VERSION")
))
.build()
.unwrap();
let res = client
.post("https://factory.talos.dev/schematics")
.body(content)