diff --git a/Library/Sources/Public/Enumerations/Artifact.swift b/Library/Sources/Public/Enumerations/Artifact.swift new file mode 100644 index 0000000..cdffbd2 --- /dev/null +++ b/Library/Sources/Public/Enumerations/Artifact.swift @@ -0,0 +1,16 @@ +public enum Artifact: String { + case executable + case image +} + +// MARK: - Randomable + +extension Artifact: Randomable { + + // MARK: Functions + + static func random() -> Artifact { + .allCases.randomElement() ?? .executable + } + +}