From f1721eae9f04ed280f8e911bf501fdf0dff3ef79 Mon Sep 17 00:00:00 2001 From: Lukas Schmidt Date: Thu, 22 Jan 2026 09:55:14 +0100 Subject: [PATCH] Adds CaseIterable to HTTPMethod --- Source/HTTPMethod.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/HTTPMethod.swift b/Source/HTTPMethod.swift index d5a3c53..1641ef7 100644 --- a/Source/HTTPMethod.swift +++ b/Source/HTTPMethod.swift @@ -29,7 +29,7 @@ import Foundation See [IETF document](https://tools.ietf.org/html/rfc7231#section-4.3) */ -public enum HTTPMethod: String, Sendable { +public enum HTTPMethod: String, Sendable, CaseIterable { case GET case POST case PUT