From d3966eaf53ad9ba68cf0fcea63917b5915b240ad Mon Sep 17 00:00:00 2001 From: Anson Date: Fri, 22 Aug 2025 11:23:26 -0600 Subject: [PATCH] fix: remove unused slug field to eliminate warning --- ghost-upload/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ghost-upload/src/main.rs b/ghost-upload/src/main.rs index 7d928c1..90531ce 100644 --- a/ghost-upload/src/main.rs +++ b/ghost-upload/src/main.rs @@ -200,7 +200,6 @@ struct GhostPostsResponse { #[derive(Deserialize, Debug)] struct GhostPost { id: String, - slug: String, } async fn get_existing_post_id(slug: &str, token: &str) -> Option {