From 771f150f98e238fd13aa9235b1e28a26d01ddcd1 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 22 Feb 2025 00:58:18 +0100 Subject: [PATCH] Conformed the Artifact enumeration to the ExpressibleByArgument protocol in the executable target. --- .../IDE+Conformances.swift => Definitions/Conformances.swift} | 1 + 1 file changed, 1 insertion(+) rename Executable/Sources/{Extensions/IDE+Conformances.swift => Definitions/Conformances.swift} (72%) diff --git a/Executable/Sources/Extensions/IDE+Conformances.swift b/Executable/Sources/Definitions/Conformances.swift similarity index 72% rename from Executable/Sources/Extensions/IDE+Conformances.swift rename to Executable/Sources/Definitions/Conformances.swift index 413ea49..e9651c0 100644 --- a/Executable/Sources/Extensions/IDE+Conformances.swift +++ b/Executable/Sources/Definitions/Conformances.swift @@ -3,4 +3,5 @@ import ColibriLibrary // MARK: - ExpressibleByArgument +extension Artifact: ExpressibleByArgument {} extension IDE: ExpressibleByArgument {}