From dd9888fc804bf45e72fdd5448ac740e41c26d0d6 Mon Sep 17 00:00:00 2001 From: Jonathan Wanke Date: Tue, 2 Sep 2025 20:03:08 +0200 Subject: [PATCH] Fixed reqwest to request so it works now for some reason --- src/auth/auth_connector.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auth/auth_connector.rs b/src/auth/auth_connector.rs index 97039b2..e7f659e 100644 --- a/src/auth/auth_connector.rs +++ b/src/auth/auth_connector.rs @@ -1,8 +1,8 @@ use std::time::Duration; use std::collections::HashMap; use uuid::Uuid; -use reqwest::blocking::{Client, Response}; -use reqwest::header::CONTENT_TYPE; +use request::blocking::{Client, Response}; +use request::header::CONTENT_TYPE; use json::JsonValue; #[derive(Debug, Clone)]