From 3e563d4bb0e40726e342b798a0ccfbbddab9c503 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Thu, 29 May 2025 17:43:52 -0500 Subject: [PATCH] Clean up now-unused imports in main.rs --- src/main.rs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/main.rs b/src/main.rs index 09d2c89..d013067 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,18 +1,10 @@ use gt_tools::structs::release::CreateReleaseOption; use gt_tools::cli::Args; -use std::{ - env, - fs -}; - use clap::Parser; -use reqwest::{header, Error}; -use reqwest::header::{ACCEPT, USER_AGENT}; - -const API_RELEASE_FRONT: &'static str = "/api/v1/repos/"; -const API_RELEASE_BACK: &'static str = "/releases"; +use reqwest::header; +use reqwest::header::ACCEPT; #[tokio::main] async fn main() -> Result<(), gt_tools::Error> {