Implemented the OpenProjectTask task in the library target.

This commit is contained in:
2025-02-20 00:18:33 +01:00
parent d5f7edf049
commit 0b2bcd6d1e
3 changed files with 116 additions and 0 deletions
@@ -2,3 +2,19 @@ public enum IDE: String {
case vscode
case xcode
}
// MARK: - Extension
extension IDE {
// MARK: Functions
static func random() -> IDE {
.allCases.randomElement() ?? .xcode
}
}
// MARK: - CaseIterable
extension IDE: CaseIterable {}