Conformed the IDE enumeration in the library target to the Randomable protocol.

This commit is contained in:
Javier Cicchelli 2025-02-22 00:54:33 +01:00
parent c5fc608c23
commit a6b8c08125

View File

@ -3,9 +3,9 @@ public enum IDE: String {
case xcode
}
// MARK: - Extension
// MARK: - Randomable
extension IDE {
extension IDE: Randomable {
// MARK: Functions
@ -14,7 +14,3 @@ extension IDE {
}
}
// MARK: - CaseIterable
extension IDE: CaseIterable {}