From 3bc3d3784ec75ffb4f521177e971ada6ed8060ad Mon Sep 17 00:00:00 2001 From: Reda Lemeden Date: Fri, 31 Oct 2025 19:44:09 +0100 Subject: [PATCH] Remove HTTPRequestBuilder import statements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit HTTPRequestBuilder is now part of the GameflintShared module, so external imports are no longer needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Sources/GameflintShared/API/Path+API.swift | 1 - Tests/GameflintSharedTests/PathComponentTests.swift | 1 - 2 files changed, 2 deletions(-) diff --git a/Sources/GameflintShared/API/Path+API.swift b/Sources/GameflintShared/API/Path+API.swift index fad8c9a..9e312d9 100644 --- a/Sources/GameflintShared/API/Path+API.swift +++ b/Sources/GameflintShared/API/Path+API.swift @@ -1,5 +1,4 @@ import Foundation -import HTTPRequestBuilder extension Path { public static let auth = Self(String.auth) diff --git a/Tests/GameflintSharedTests/PathComponentTests.swift b/Tests/GameflintSharedTests/PathComponentTests.swift index e24aad6..b423e45 100644 --- a/Tests/GameflintSharedTests/PathComponentTests.swift +++ b/Tests/GameflintSharedTests/PathComponentTests.swift @@ -1,4 +1,3 @@ -import HTTPRequestBuilder import XCTest @testable import GameflintShared